怎么让css动画一个执行完成之后再执行另外一个动画?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么让css动画一个执行完成之后再执行另外一个动画?相关的知识,希望对你有一定的参考价值。
我有俩个动画,我想让第一个动画执行完成之后在执行第二个动画,应该怎么写?路过的大神看看。
可以直接用css3写,或者用js定时器控制,看你具体要实现什么动画。追问就是我刚进网页有个缓慢的加载动效,然后在进入网页有另外一个动效,
参考技术A <html><head>
<style>
@keyframes longer
from width: 100px;
to width: 200px;
@-moz-keyframes longer
from width: 100px;
to width: 200px;
@-webkit-keyframes longer
from width: 100px;
to width: 200px;
@-o-keyframes longer
from width: 100px;
to width: 200px;
#animator
width: 100px;
height: 100px;
background: red;
.animation
animation: longer 0.5s;
-moz-animation: longer 0.5s;
-webkit-animation: longer 0.5s;
-o-animation: longer 0.5s;
</style>
</head>
<body>
<div id="animator" class="animation"></div>
<script>
var animator = document.getElementById('animator');
animator.addEventListener('animationend', endHandler);
function endHandler()
animator.removeEventListener('animationend', endHandler);
animator.className = '';
setTimeout(function ()
animator.className = 'animation';
, 0);
</script>
</body>
</html>本回答被提问者采纳
css3动画连续执行两个怎么做
.sec01_show #cycle1
//动画一,从小到大进入
opacity: 1!important;
-webkit-animation: ico_cycle_cir 1s linear;
//动画二,无限旋转
-webkit-animation: rotate linear;
-webkit-animation-duration: 5s;
-webkit-animation-iteration-count: infinite;
我怎么让先执行了动画一之后再执行动画二呢?这样写的话,直接就执行了动画二,而没有执行动画一,写了delay也不行,求告诉,怎么做
用js改变css样式,-webkit-animation: ico_cycle_cir变为第二个动画的样式,可以用setTimeout来做
把两个css3动画写成一个动画
@-webkit-keyframes ico_cycle_cir
0% opacity: 0;-webkit-transform: scale(0);
100% -webkit-transform: scale(1);
你想表达什么
以上是关于怎么让css动画一个执行完成之后再执行另外一个动画?的主要内容,如果未能解决你的问题,请参考以下文章
css3循环动画在第一次执行的时候可以设置多少秒之后开始执行,但到了下一次开始执行的间隔时间怎么设置?