Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. $(window).scroll(function(e){
  2. parallax();
  3. });
  4.  
  5. function parallax(){
  6. var scrolled = $(window).scrollTop();
  7. $('.relative-background').css('top',-(scrolled*0.15)+'px'); // changing the class here
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement