Skip to content

Instantly share code, notes, and snippets.

@bryanmonzon
Created July 23, 2014 03:31
Show Gist options
  • Save bryanmonzon/8bdfa564cc9ab9e6486a to your computer and use it in GitHub Desktop.
Save bryanmonzon/8bdfa564cc9ab9e6486a to your computer and use it in GitHub Desktop.
<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