Skip to content

Instantly share code, notes, and snippets.

@oguzhanaslan
Created January 15, 2015 07:51
Show Gist options
  • Save oguzhanaslan/2bb67c1b90401b941923 to your computer and use it in GitHub Desktop.
Save oguzhanaslan/2bb67c1b90401b941923 to your computer and use it in GitHub Desktop.
Scroll Event Opacity Decrease
$(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