Last active
July 18, 2016 09:09
-
-
Save alexvas123/5bd7ea74336e5a06df8c47b9afea05a7 to your computer and use it in GitHub Desktop.
scroll animation
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
// 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