html 一次完成回调的多个动画

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 一次完成回调的多个动画相关的知识,希望对你有一定的参考价值。

$(document).ready(function () {
    animate([$('#one'), $('#two'), $('#three')], finished);
});

function finished() {
    $('body').append('Finished');
}

function animate(list, callback) {
    if (list.length === 0) {
        callback();
        return;
    }
    $el = list.shift();
    $el.animate({left: '+=200'}, 1000, function () {
        animate(list, callback);
    });
}

container {
    position: relative;
}

.box {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 100px;
    top: 40px;
}

#one { background-color: #F33; }
#two { background-color: #F99; }
#three { background-color: #9F9; }

<body>
  <div id="container">
    <div id="one" class="box"></div>
    <div id="two" class="box"></div>
    <div id="three" class="box"></div>
  </div>
</body>

以上是关于html 一次完成回调的多个动画的主要内容,如果未能解决你的问题,请参考以下文章

带有回调的AngularJS动画,等待下一个动画开始

如何在并行调用中为每个动画提供回调

CSS3 动画完成时是不是有回调?

AngularJS css 动画 + 完成回调

回调:动画完成:在 .promise().done() 之后调用

在Vue中使用GSAP完成动画(三)动画事件