Skip to content

Instantly share code, notes, and snippets.

@siriokun
Created April 25, 2017 07:21
Show Gist options
  • Save siriokun/3903cc709f4e8496eca5401e7f2da8d2 to your computer and use it in GitHub Desktop.
Save siriokun/3903cc709f4e8496eca5401e7f2da8d2 to your computer and use it in GitHub Desktop.
Only show navigation when scrolling
$(window).scroll(function (event) {
var scroll = $(window).scrollTop();
// Do something
if(scroll>0){
$("#nav").fadeIn("slow");
}else{
$("#nav").fadeOut("slow");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment