Skip to content

Instantly share code, notes, and snippets.

@elinwibe
Created December 25, 2017 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elinwibe/4c1f6d33e40a603ffc6ded89a61ec3f0 to your computer and use it in GitHub Desktop.
Save elinwibe/4c1f6d33e40a603ffc6ded89a61ec3f0 to your computer and use it in GitHub Desktop.
Element fade in when not at top
$(window).scroll(function () {
if($(this).scrollTop() != 0) {
$('#').fadeIn("slow"); //If NOT at top/0px, # fades in
} else {
$('#').fadeOut("fast");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment