Created
February 22, 2017 10:19
-
-
Save ingozoell/586bc7f26cce48dce8b4841bd657d204 to your computer and use it in GitHub Desktop.
scrollTop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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