Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <ul id="main-links">
  2. <li class="active"><a href="#1">First</a></li>
  3. <li><a href="#2">Second</a></li>
  4. <li><a href="#3">Third</a></li>
  5. </ul>
  6.  
  7. <section id="1">
  8. </section>
  9.  
  10. <section id="2">
  11. </section>
  12.  
  13. <section id="3">
  14. </section>
  15.  
  16. .main-links {
  17. display:none;
  18. position:fixed;
  19. bottom:0;
  20. width:90%;
  21. margin-left:7.5%;
  22. }
  23.  
  24. .main-links li{
  25. float:left;
  26. padding:0 .10em 2em .10em;
  27. font-size:.75em;
  28. font-weight:700;
  29. }
  30.  
  31. .active {
  32. border-bottom:3px #000 solid;
  33. }
  34.  
  35. $(window).scroll(function() {
  36. if ($(this).scrollTop() > 200) {
  37. $(".main-links").fadeIn();
  38.  
  39. } else {
  40. $(".main-links").fadeOut();
  41.  
  42. }
  43. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement