Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. <script type="text/javascript" src="jquery-3.1.1.js"></script>
  2. <script>
  3. var num = 120; //number of pixels before modifying styles
  4.  
  5. $(window).bind('scroll', function() {
  6. if ($(window).scrollTop() > num) {
  7. $('nav').addClass('fixed');
  8. } else {
  9. $('nav').removeClass('fixed');
  10. }
  11. });
  12. </script>
  13.  
  14. <div id="headwrapper">
  15. <header>
  16. <img src="Logo.png">
  17. <h1>IT TECH</h1>
  18. </header>
  19. </div>
  20. <nav>
  21. <div id="selector"></div>
  22. <a class="link1" href="home.htm">
  23. <p>Home</p>
  24. </a>
  25. <a class="link2" href="talen.htm">
  26. <p>Programmeertalen</p>
  27. </a>
  28. <a class="link3" href="computer.htm">
  29. <p>Computers</p>
  30. </a>
  31. <a class="link4" href="richting.htm">
  32. <p>Richtingen</p>
  33. </a>
  34. <a class="link5" href="contact.htm">
  35. <p>Contact</p>
  36. </a>
  37. </nav>
  38. <div id="element">
  39. <div id="slider">
  40. <div title="Banaan" id="foto1">
  41. <h1>Welcome to</h1><img src="Logo.png">
  42. <h1>IT TECH</h1></div>
  43. <div title="Peren" id="foto2"></div>
  44. <div title="Kiwi's" id="foto3"></div>
  45. <div title="Aardbeien" id="foto4"></div>
  46. </div>
  47. </div>
  48. <article></article>
  49.  
  50. .fixed ~ #slider {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement