Advertisement
Guest User

Probleme

a guest
Dec 20th, 2014
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.41 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <link rel="stylesheet" href="CSS.css"/>
  4. </head>
  5.    
  6. <body>
  7.     <div id="Top">
  8.     </div>
  9.        
  10.     <div id="nav">
  11.     </div>
  12.        
  13.     <div class="Contenu">
  14.     </div>
  15.    
  16.     <script>
  17.         window.onscroll = function()
  18.         {
  19.             if(getScrollTop()>90)
  20.             {
  21.                 var navbar = document.getElementById("Nav");
  22.                 navbar.style.position="fixed";
  23.                 navbar.style.top="0";
  24.             };
  25.         };
  26.        
  27.     </script>
  28.    
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement