Created
October 18, 2014 15:50
-
-
Save illycz/0da5f8053a041ffeb825 to your computer and use it in GitHub Desktop.
Animace načítání referencí
This file contains 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
http://www.studionaam.com/ | |
$elements = $('.image'); | |
$elements.each(function(i, e) { | |
$(window).scrollTop() + $(window).height() > $(this).offset().top + 100 ? $(this).addClass("inview") : $(this).removeClass("inview"); | |
}); | |
$(window).scroll(function () { | |
$elements = $('.image'); | |
$elements.each(function(i, e) { | |
$(window).scrollTop() + $(window).height() > $(this).offset().top + 100 ? $(this).addClass("inview") : $(this).removeClass("inview"); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment