Advertisement
FlugzeugAUT

Untitled

Jun 12th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. var navi = document.getElementById("navigation");
  2. var naviPosY = navi.offsetTop;
  3.  
  4. document.addEventListener("scroll", function(e) {
  5. if (window.scrollY >= naviPosY){
  6. navi.className ="fixed";
  7.  
  8. } else {
  9. navi.className ="absolute";
  10. }
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement