Skip to content

Instantly share code, notes, and snippets.

@alexvas123
Last active July 18, 2016 09:09
Show Gist options
  • Save alexvas123/5bd7ea74336e5a06df8c47b9afea05a7 to your computer and use it in GitHub Desktop.
Save alexvas123/5bd7ea74336e5a06df8c47b9afea05a7 to your computer and use it in GitHub Desktop.
scroll animation
// Apparently doesn't work on smartphones with Chrome.
$(window).scroll(function (event) {
var y = $(this).scrollTop();
if (y >= 500) {
$('.class').addClass('animated fadeInDown');
}
});
// Needs Animate.css
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment