Advertisement
anatolionobre

160x600 - Fixed Scroll Snippet

Aug 6th, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     jQuery(document).ready(function() {
  2.  
  3.     var el=$('#skyL');
  4.   //  var originalelpos=el.offset().top;
  5. var originalelpos= 400;  // take it where it originally is on the page
  6.  
  7.     //run on scroll
  8.      $(window).scroll(function(){
  9.         var el = $('#skyL'); // important! (local)
  10.         var elpos = el.offset().top; // take current situation
  11.         var windowpos = $(window).scrollTop();
  12.         var finaldestination = windowpos+originalelpos;
  13.         el.stop().animate({'top':finaldestination},500);
  14.      });
  15.  
  16.  
  17.    
  18.  
  19.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement