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