我想通过向下滚动或向上滚动再次响应哇动画。如何调出WOW()。init();距离班级哇500像素后还能发挥作用吗?
http://jsfiddle.net/ewogyb10/1/
new WOW().init();
$(window).scroll(function() {
var hT = $('.text').offset().top,
hH = $('.text').outerHeight(),
wH = $(window).height(),
wS = $(this).scrollTop();
if (wS > (hT+hH-wH)){
function afterReveal( el ) {
el.addEventListener('animationend', function( event ) {
new WOW().init();
});
}
}
});