carlos-kryzalis
Results
2
comments of
carlos-kryzalis
Hi, the visibility didn't work for me, i used the css opacity : 0 in the wow class and used the callback on the end of the animation (https://github.com/matthieua/WOW/issues/230) to...
thats the code that worked for me: ` .wow{ opacity: 0; } ` ` function afterReveal( el ) { el.addEventListener('animationend', function( event ) { $('.wow').each(function(){ $(this).css('opacity',1); }); }); } new...