Advertisement
Guest User

Untitled

a guest
Sep 20th, 2014
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. window.addEventListener("scroll", function() {
  2. if (window.scrollY > 200) {
  3. $('#navbar').css({top:"100px"});
  4. }
  5. else {
  6. $('#navbar').css({top:"0px"});
  7. }
  8. },false);
  9.  
  10. #navbar{
  11. top:0;
  12. position:fixed;
  13. transition: top 0.5s;
  14. }
  15.  
  16. $('#navbar').animate({top:"100px"});
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement