如何使用 animate.css 和 Jquery 制作动画

How to animate stuff with animate.css and Jquery

我有以下代码片段

HTML

<ul id="test">
    <li class="a">1</li>
    <li class="b">2</li>
    <li class="c">3</li>
</ul>
<ul id="test2">
    <li data-prod="a" class="animated">
        <div>1</div>
        <div>2</div>
        <div>3</div>        
    </li>
    <li data-prod="b" class="animated hide">
        <div>1</div>
        <div>2</div>
        <div>3</div> 
    </li>
    <li data-prod="c" class="animated hide">
        <div>1</div>
        <div>2</div>
        <div>3</div> 
    </li>
</ul>

CSS

ul#test > li {
    display: inline-block;
    padding: 10px;
    cursor: pointer;
}
#test {
    position: fixed;
    top: 0;
    left: 0;
}
#test2 {
    position: fixed;
    top: 0;
    right: 0;
    list-style: none;
}
#test2 > li {
    background: yellow;
    width: 350px;
    height: 600px;
    /* transition: height 0.3s ease, width 0.2s ease;*/
    overflow: hidden;
    margin-top: -30px;
    padding-top: 30px;
    margin-right: -50px;
}
.hide {
    display: none;
}

还有这个jquery

$(document).ready(function () {

    $('#test li').on('click', function () {

        var className = $(this).attr('class');
        $('#test2 > li').each(function () {

            var prodName = $(this).data('prod');


            if (prodName == className) {

                $('#test2 > li').removeClass('bounceInRight').addClass('bounceOutRight');
                $this = $(this);
                setTimeout(function () {
                    console.log(this);
                    $('#test2 > li').addClass('hide')
                    $this.removeClass('hide bounceOutRight').addClass('bounceInRight');
                }, 400);


            }
        });
    })
});

这里是DEMO

我有几个问题

  1. 每次点击 ID 为 #testulli 具有 ID #test2ul 中的适当 li。如何为 li 中的每个 div 设置动画 fadeInTop (animate.css) 一个接一个没有 在 li 完成动画后,使用 类 和 ID(仅使用标签选择器)。
  2. 有没有更好的方法来完成我在 jquery 中所做的事情并获得更好的性能。我在 codereview
  3. 中添加了这部分问题

您可以为动画添加回调。如果不删除和添加 class,您将无法重复动画。

               $(document).ready(function () {

        $('#test li').on('click', function () {

            var className = $(this).attr('class');
            $('#test2 > li').each(function () {

                var prodName = $(this).data('prod');


                if (prodName == className) {

                    $('#test2 > li').removeClass('bounceInRight').addClass('bounceOutRight');
                    $this = $(this);
                    $this.find('div').removeClass('fadeInDown');
                    setTimeout(function () {
                        console.log(this);
                        $('#test2 > li').addClass('hide')
                        $this.removeClass('hide bounceOutRight').addClass('bounceInRight');
                    }, 400);

                    
                }
            });
          
        })
        
        $('#test2 li').on('oanimationend animationend webkitAnimationEnd', function() { 
            $(this).find('div').each(function(i){
               var $this = $(this);
                setTimeout(function(){
                  $this.addClass('animated fadeInDown')
                },i*500);
                
            })
        });
    });
    ul#test > li {
        display: inline-block;
        padding: 10px;
        cursor: pointer;
    }
    #test {
        position: fixed;
        top: 0;
        left: 0;
    }
    #test2 {
        position: fixed;
        top: 0;
        right: 0;
        list-style: none;
    }
    #test2 > li {
        background: yellow;
        width: 350px;
        height: 600px;
        /* transition: height 0.3s ease, width 0.2s ease;*/
        overflow: hidden;
        margin-top: -30px;
        padding-top: 30px;
        margin-right: -50px;
    }
    .hide {
        display: none;
    }
    ul#test2 > li div {  padding: 5px; transform: translate3d(0,-2000px,0)}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link href="//cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.6/animate.min.css" rel="stylesheet" />

<ul id="test">
  <li class="a">1</li>
  <li class="b">2</li>
  <li class="c">3</li>
</ul>
<ul id="test2">
  <li data-prod="a" class="animated hide">
    <div>1</div>
    <div>2</div>
    <div>3</div>
  </li>
  <li data-prod="b" class="animated hide">
    <div>1</div>
    <div>2</div>
    <div>3</div>
  </li>
  <li data-prod="c" class="animated hide">
    <div>1</div>
    <div>2</div>
    <div>3</div>
  </li>
</ul>