mirror of
https://git.wownero.com/wownero/wownero.org-website.git
synced 2024-08-15 01:03:33 +00:00
14 lines
No EOL
468 B
JavaScript
14 lines
No EOL
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);
|
|
}
|
|
|
|
});
|
|
});
|
|
}); |