Advertisement
Guest User

Untitled

a guest
Oct 13th, 2015
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  2. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  3. <!-- Include all compiled plugins (below), or include individual files as needed -->
  4. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
  5.  
  6. <script src="jquery-1.11.3.min.js"></script>
  7.  
  8. <script>
  9.  
  10. $(document).ready(function () {
  11. var NavY = $('.nav').offset().top;
  12.  
  13. var stickyNav = function () {
  14. var ScrollY = $(window).scrollTop();
  15.  
  16. if (ScrollY > NavY) {
  17. $('.navbar').addClass('navbar-fixed-top');
  18. } else {
  19. $('.navbar').removeClass('navbar-fixed-top');
  20. }
  21. };
  22.  
  23. stickyNav();
  24.  
  25. $(window).scroll(function () {
  26. stickyNav();
  27. });
  28. });
  29.  
  30. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement