距离课堂滚动500px时的活动动画

时间:2018-10-23 04:01:51

标签: jquery animation wow.js

我想通过向下滚动或向上滚动再次响应哇动画。如何调出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();
              });
            }
          }
        });

0 个答案:

没有答案