【发布时间】:2019-02-17 10:31:07
【问题描述】:
嗨,我已经学习 css 2 个月了,所以我遇到了动画问题。 我希望我的代码在石灰完成,但动画完成,并且 div 再次变为红色。
@keyframes example{
from{background-color: red}
to{background-color: lime}
}
.animate{
width:200px;
height:100px;
background-color: red;
animation-name: example;
animation-direction: alternate;
animation-duration: 4s;
animation-iteration-count: 1;
}
【问题讨论】:
标签: css css-animations