Skip to content

Instantly share code, notes, and snippets.

@marsen
Created September 6, 2015 05:18
Show Gist options
  • Save marsen/cb910ef5b377eec06261 to your computer and use it in GitHub Desktop.
Save marsen/cb910ef5b377eec06261 to your computer and use it in GitHub Desktop.
facebookQA
$(document).ready(function(){
$("#content").hide();
$("#content").fadeIn(2000);
$(".nav").hide();
$(window).scroll(function(){
if($(document).scrollTop()<7){
$(".nav").fadeOut(200);
}
else if($(document).scrollTop()>7){
$(".nav").fadeIn(200);
}
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment