Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. function EasyPeasyParallax() {
  2.  
  3. scrollPos = jQuery(this).scrollTop();
  4.  
  5. jQuery('#banner').css({
  6. 'background-position' : 'center ' + (-scrollPos/4)+"px"
  7. });
  8.  
  9. jQuery('#bannertext').css({
  10. 'margin-top': (scrollPos/4)+"px",
  11. 'opacity': 1-(scrollPos/250)
  12. });
  13.  
  14. }
  15.  
  16. jQuery(document).ready(function(){
  17.  
  18. jQuery(window).scroll(function() {
  19. EasyPeasyParallax();
  20. });
  21.  
  22. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement