Created
July 23, 2014 03:31
-
-
Save bryanmonzon/8bdfa564cc9ab9e6486a to your computer and use it in GitHub Desktop.
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
<script type="text/javascript"> | |
jQuery(window).scroll(function() { | |
jQuery('#object').each(function(){ | |
var imagePos = $(this).offset().top; | |
var topOfWindow = $(window).scrollTop(); | |
if (imagePos < topOfWindow+400) { | |
$(this).addClass("slideUp"); | |
} | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment