Created
January 15, 2015 07:51
-
-
Save oguzhanaslan/2bb67c1b90401b941923 to your computer and use it in GitHub Desktop.
Scroll Event Opacity Decrease
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
$(window).on('scroll', function() { | |
$('#on-load-button').css('opacity', function() { | |
return 1 - ($(window).scrollTop() / $(this).outerHeight()); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment