animation-name 属性指定动画名称。
animation-name: keyframename|none;
值 | 说明 |
keyframename | 指定要绑定到选择器的关键帧的名称 |
none | 指定有没有动画(可用于覆盖从级联的动画) |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>NTHOME-零基础入门学习Web(HTML5+CSS3)</title>
<style>
div
{
width:100px;
height:100px;
border-radius: 50%;
background:green;
position:relative;
animation-name:1;
animation:1s infinite;
/* Safari 和 Chrome */
-webkit-animation:1s infinite;
-webkit-animation-name:1;
}
@keyframes 1
{
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>
循环执行动画fishcMovie效果。
表格中的数字表示支持该属性的第一个浏览器版本号。
Safari | Chrome | FireFox | IE |
4.0 | 4.0 | 4.0 | 10.0 |