Guest User

Untitled

a guest
Jul 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <img src="foo.jpg" id="parallax1" class="parallax">
  2.  
  3. <style>
  4. .parallax {
  5. position : fixed;
  6. top : 0px;
  7. left : 0px;
  8. }
  9. </style>
  10.  
  11. <script>
  12. var scroller = $('#parallax1');
  13. $(window).bind('scroll', function(){
  14. var top = this.scrollTop;
  15. $('#parallax1').css('top', top * someMultiplier);
  16. });
  17. </script>
Add Comment
Please, Sign In to add comment