Advertisement
Sergiovan

Untitled

Nov 20th, 2016
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(window).scroll(function () { // Called every time you scroll
  2.     $('#navbar') // The navbar
  3.     .css( // This function sets a css property
  4.         'top', //Set the top property
  5.         Math.max(142 - $(window).scrollTop(), 0) // 142 - amount scrolled or 0 if it's less than 0
  6.         + 'px'); // Coerce into pixels
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement