Skip to content

Instantly share code, notes, and snippets.

@pablolobos
Created November 11, 2013 14:42
Show Gist options
  • Save pablolobos/7414149 to your computer and use it in GitHub Desktop.
Save pablolobos/7414149 to your computer and use it in GitHub Desktop.
jquery_scroll-fade.js
$(document).scroll(function () {
var y = $(this).scrollTop();
if (y > 300) {
$('.target').fadeIn();
} else {
$('.target').fadeOut();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment