我有几个关于 CSS 的问题。我有一个动画,如下所示。
<style>
div.one
{
width:100px;
height:100px;
background:blue;
position:relative;
animation:skew ease 2s;
animation-iteration-count: infinite;
text-align:center;
border-radius:50%;
}
@keyframes myfirst
{
0% {background:red;left:0px;transform:rotat…
25% {background:yellow;left:50px;transform:r…
50% {background:green;left:100px;transform:r…
75% {background:blue;left:50px;transform:rot…
100% {background:red;left:00px;transform:rota…
}
</style>
<div class="one"></div>
我怎样才能让它在第一个动画之后播放?例如,动画“a”将在“b”完成后播放,而不是在 b 发生时播放。