其他分享
首页 > 其他分享> > css3动画animation

css3动画animation

作者:互联网

1.动画组成
关键帧@keyframes,用于定义动画的每个状态
①from...to..
@keyframes 动画名称{
from{}
to{}
}
②0% 10% 50%
@keyframes 动画名称{
0%{}
50%{}
100%{}
}

调用动画
animation:动画名称 时间s;
动画播放方式
1.默认播放一次
2.infinite循环播放
动画方向animation-direction
1.正序 animation-direction: normal;
2.倒序 animation-direction: reverse;
3.交替 animation-direction:alternate;
4.反向交替
animation-direction:alternate-reverse;

标签:css3,动画,direction,alternate,keyframes,animation,播放
来源: https://www.cnblogs.com/MLdetiantian/p/16250584.html