Skip to content

Instantly share code, notes, and snippets.

@wireinet
Created January 5, 2017 13:31
Show Gist options
  • Save wireinet/f72bb29775f304a0b5706c0f4c18e66a to your computer and use it in GitHub Desktop.
Save wireinet/f72bb29775f304a0b5706c0f4c18e66a to your computer and use it in GitHub Desktop.
reveal menu by scroll
$(document).ready(function(){
$(".menu").hide();
$(function(){
$(window).scroll(function(){
if ($($(this)).scrollTop() > 100)
{
$(".menu").fadeIn();
}
else {$(".menu").fadeOut();}
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment