Web速查-索引

animation-duration

定义

animation-duration属性定义动画完成一个周期需要多少秒或毫秒。

注意:如果只设置动画播放一次,该属性将不起作用。

语法

animation-duration: time;

属性值

说明
time 指定动画播放完成花费的时间。默认值为 0,意味着没有动画效果。

实例

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
<style>
div
{
width:100px;
height:100px;
border-radius: 50%;
background:green;
position:relative;
animation:fishcMovie infinite;
animation-duration: 3s;
/* Safari 和 Chrome */
-webkit-animation:fishcMovie infinite;
-webkit-animation-duration: 3s;
}
@keyframes fishcMovie
{
0% {background:red; left:0px; top:0px;}
25% {background:yellow; left:200px; top:0px;}
50% {background:blue; left:200px; top:200px;}
75% {background:red; left:0px; top:200px;}
100% {background:green; left:0px; top:0px;}
}
</style>
</head>
<body>
<div></div>
</body>
</html>








浏览器支持

表格中的数字表示支持该属性的第一个浏览器版本号

Safari Chrome FireFox IE
4.0 4.0 4.0 10.0