animate.css修改动画执行时间

版权声明:本文为博主原创文章,转载请注明出处 https://blog.csdn.net/m0_37750720/article/details/82913108

只需要在animate.css的开头找到.animated{ }进行修改即可:

.animated {
    -webkit-animation-duration: 1s; 
    animation-duration: 2s; // 动画执行时间
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

但其实有更好的方法,只需在要执行动画的div设置stye:

<div style="animation-duration: 500ms"></div>

猜你喜欢

转载自blog.csdn.net/m0_37750720/article/details/82913108
今日推荐