redesign by cisme

This commit is contained in:
dsc 2021-05-07 17:45:33 +02:00 committed by Sander
parent 7eb87dac8e
commit ea1a1872a7
120 changed files with 6391 additions and 5324 deletions

14
js/scroll.js Normal file
View file

@ -0,0 +1,14 @@
$(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);
}
});
});
});