Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save telekineticyeti/1da05cde5cffe5d4d2a9 to your computer and use it in GitHub Desktop.
Save telekineticyeti/1da05cde5cffe5d4d2a9 to your computer and use it in GitHub Desktop.
$(window).scroll(function() {
$('.navbar-fixed').addClass('scrolling');
clearTimeout($.data(this, 'scrollTimer'));
$.data(this, 'scrollTimer', setTimeout(function() {
$('.navbar-fixed').removeClass('scrolling');
}, 50));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment