Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Created February 22, 2017 10:19
Show Gist options
  • Save ingozoell/586bc7f26cce48dce8b4841bd657d204 to your computer and use it in GitHub Desktop.
Save ingozoell/586bc7f26cce48dce8b4841bd657d204 to your computer and use it in GitHub Desktop.
scrollTop
$(function () {
$(window).scroll(function () {
if ($(this).scrollTop() > 70) {
$('.intro-link').fadeOut(400);
} else {
$('.intro-link').fadeIn();
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment