animation
英 [ˌænɪˈmeɪʃn] 美 [ˌænəˈmeʃən]
n.生气,活泼;动画片制作,动画片摄制;[影视]动画片
复数: animations
direction
英 [dəˈrekʃn] 美 [dɪˈrɛkʃən, daɪ-]
n.方向;趋势;方面;用法说明
复数: directions
css animation-direction属性 语法
animation-direction属性怎么用?
animation-direction属性是用来定义是否应该轮流反向播放动画的;当动画播放次数超过一次时,我们就可以通过设置animation-direction的值为alternate来实现动画轮流反向播放。
作用:定义是否应该轮流反向播放动画。
语法:animation-direction: normal|alternate;
说明:normal 默认值。动画应该正常播放。alternate 动画应该轮流反向播放。
注释:如果把动画设置为只播放一次,则该属性没有效果。
css animation-direction属性 示例
<!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>
<p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation-direction 属性。</p>
<div></div>
</body>
</html>运行实例 »
点击 "运行实例" 按钮查看在线实例