我评论了某些部分的fadeOut,但在第二次滚动后无法让它们重新出现,而且我对JavaScript的了解不足,无法找到正确的解决方案。我该怎么做?

  $(document.body).fadeIn(1000);
  $(document).ready(function() {

      'use strict';

      // variables
      var $isH1First   = $('.first .is-animated h1'),
          $ispFirst    = $('.first .is-animated p'),
          $isH1Second  = $('.second .is-animated h1'),
          $ispSecond   = $('.second .is-animated p'),
          $isH1Third   = $('.third .is-animated h1'),
          $ispThird    = $('.third .is-animated p');

      // initialize fullPage
      $('#fullpage').fullpage({

     //   navigation: true,
          scrollingSpeed: 1400,
          resetSliders:true,
          fitToSectionDelay: 1000,

        afterLoad: function(index, nextIndex) {
         if( nextIndex === 1 ) {
              $isH1First.addClass('animated fadeInLeft').css('animation-delay', '.05s');
              $ispFirst.addClass('animated fadeInLeft').css('animation-delay', '.45s');
            }
         },
        onLeave: function(index, nextIndex) {
          // first animation
          if( nextIndex === 2) {
      //      $isH1First.addClass('animated fadeOutUp');
      //      $ispFirst.addClass('animated fadeOutUp');
            $isH1Second.addClass('animated fadeInDown').css('animation-delay', '.45s');
            $ispSecond.addClass('animated fadeInDown').css('animation-delay', '.85s');
          }
          // second animation
          else if( nextIndex === 3 ) {
      //      $isH1Second.addClass('animated fadeOutUp');
      //      $ispSecond.addClass('animated fadeOutUp');
            $isH1Third.addClass('animated bounceInDown').css('animation-delay', '.45s');
            $ispThird.addClass('animated flipInX').css('animation-delay', '.85s');
          }
        }
      });
    });

最佳答案

我知道这太晚了,我使用Velocity.js来获得漂亮的动画,并且我只想显示一次动画,而不是每次加载部分时都显示动画。

如果我对您的理解正确,那么您正在尝试相反的做法,这对我来说是默认行为。

我的代码的一个小例子:

if (index === 1) {
        //slide 1 animation
        if (!$jq(".refine").is(":visible")
        {
            $jq(".refine").velocity("fadeIn", {duration: 2000});
        }
    }

10-05 20:51
查看更多