本文摘自PHP中文网,作者青灯夜游,侵删。
animation-direction属性是用来定义是否应该轮流反向播放动画的;当动画播放次数超过一次时,我们就可以通过设置animation-direction的值为alternate来实现动画轮流反向播放。
CSS3 animation-direction属性
作用:定义是否应该轮流反向播放动画。
语法:
1 | animation- direction : normal |alternate;
|
normal:默认值。动画应该正常播放。
alternate:动画应该轮流反向播放。
说明: 如果 animation-direction 值是 "alternate",则动画会在奇数次数(1、3、5 等等)正常播放,而在偶数次数(2、4、6 等等)向后播放。
注:如果把动画设置为只播放一次,则该属性没有效果。
CSS3 animation-direction属性的使用示例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | <!DOCTYPE html>
< html >
< head >
< style >
div
{
width:100px;
height:100px;
background:red;
position:relative;
animation:myfirst 5s infinite;
animation-direction:alternate;
/* Safari and Chrome */
-webkit-animation:myfirst 5s infinite;
-webkit-animation-direction:alternate;
}
@keyframes myfirst
{
0% {background:red; left:0px; top:0px;}
25% {background:yellow; left:200px; top:0px;}
50% {background:blue; left:200px; top:200px;}
75% {background:green; left:0px; top:200px;}
100% {background:red; left:0px; top:0px;}
}
@-webkit-keyframes myfirst /* Safari and Chrome */
{
0% {background:red; left:0px; top:0px;}
25% {background:yellow; left:200px; top:0px;}
50% {background:blue; left:200px; top:200px;}
75% {background:green; left:0px; top:200px;}
100% {background:red; left:0px; top:0px;}
}
</ style >
</ head >
< body >
< div ></ div >
</ body >
</ html >
|
效果图:

以上就是本篇文章的全部内容,希望能对大家的学习有所帮助。更多精彩内容大家可以关注php中文网相关教程栏目!!!
以上就是animation-direction属性怎么用的详细内容,更多文章请关注木庄网络博客!
相关阅读 >>
css3 sticky不生效怎么办
ie7兼容css3吗?
css3中box-sizing属性的解析(附代码)
css怎么实现翻转效果
html5/css3 3d立方体旋转动画经典案例
nganimate插件是做什么的?
什么是css3
css3中怎么调节透明度
css3跟css区别是什么
使用css过渡有哪些触发方式
更多相关阅读请进入《animation-direction属性》频道 >>
人民邮电出版社
本书对 Vue.js 3 技术细节的分析非常可靠,对于需要深入理解 Vue.js 3 的用户会有很大的帮助。——尤雨溪,Vue.js作者
转载请注明出处:木庄网络博客 » animation-direction属性怎么用