Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ///// CONFIGURATION VARIABLES:
  2.  
  3. var name                = "#rightsidebar";
  4. var menu_top_limit      = 241;
  5. var menu_top_margin     = 20;
  6. var menu_shift_duration = 500;
  7. var menuYloc = null;
  8. ///////////////////////////////////
  9.  
  10. $(window).scroll(function()
  11. {
  12.     // Calculate the top offset, adding a limit
  13.     offset = menuYloc + $(document).scrollTop() + menu_top_margin;
  14.    
  15.     // Limit the offset to 241 pixels...
  16.     // This keeps the menu out of our header area:
  17.     if(offset < menu_top_limit)
  18.         offset = menu_top_limit;
  19.    
  20.     // Give it the PX for pixels:
  21.     offset += "px";
  22.    
  23.     // Animate:
  24.     $(name).animate({top:offset},{duration:menu_shift_duration,queue:false});
  25. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement