wownero.org-website/js/scroll.js

14 lines
468 B
JavaScript

$(document).ready(function() {
$(window).scroll( function(){
$('.fadein').each( function(i){
var bottom_of_element = $(this).offset().top + $(this).outerHeight();
var bottom_of_window = $(window).scrollTop() + $(window).height();
if( bottom_of_window > bottom_of_element ){
$(this).animate({'opacity':'10'},1000);
}
});
});
});