onediewreckshun

sticky script | http://kimsjongin.tumblr.com

Aug 14th, 2013
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. $(function(){ // document ready
  3.  
  4.   var stickyTop = $('.sticky').offset().top; // returns number
  5.  
  6.   $(window).scroll(function(){ // scroll event  
  7.  
  8.     var windowTop = $(window).scrollTop(); // returns number
  9.  
  10.     if (stickyTop < windowTop) {
  11.       $('.sticky').css({ position: 'fixed', top: 0 });
  12.     }
  13.     else {
  14.       $('.sticky').css('position','static');
  15.     }
  16.  
  17.   });
  18.  
  19. });
  20. </script>
Add Comment
Please, Sign In to add comment