Advertisement
virtualideaz

transparent-to-colored-navbar.js

May 23rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //this is the javascript for your transition
  2. $(function () {
  3.     $(document).scroll(function () {
  4.         var $nav = $(".navbar-fixed-top");
  5.         $nav.toggleClass('scrolled', $(this).scrollTop() > $nav.height());
  6.     });
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement