Skip to content

Instantly share code, notes, and snippets.

@martdn
Last active November 12, 2015 09:30
Show Gist options
  • Save martdn/dcacc3e2db1105435a14 to your computer and use it in GitHub Desktop.
Save martdn/dcacc3e2db1105435a14 to your computer and use it in GitHub Desktop.
Show fixed navbar when scroll
$(document).ready(function(){
var top_show = 90;
$(window).scroll(function () {
if ($(this).scrollTop() > top_show) $('.fixed-navbar').fadeIn(100);
else $('.fixed-navbar').fadeOut(100);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment