CSS3 animation 属性
实例
与 div
div
{
animation:mymove 5s infinite;
-webkit-animation:mymove 5s infinite; /* Safari 和 Chrome */
}
Internet Explorer 10、Firefox 以及 Opera 支持 animation 属性。
Safari 和 Chrome -webkit-animation 属性。
注释:Internet Explorer 9 animation 属性。
animation :
- animation-name
- animation-duration
- animation-timing-function
- animation-delay
- animation-iteration-count
- animation-direction
注释: animation-duration 时长为 0
| 默认值: | none 0 ease 0 1 normal |
|---|---|
| 继承性: | no |
| 版本: | CSS3 |
| JavaScript 语法: | object.style.animation="mymove 5s infinite" |
语法
animation: name duration timing-function delay iteration-count direction;
| 值 | 描述 |
|---|---|
| animation-name | 的 keyframe 名称。。 |
| animation-duration | |
| animation-timing-function | |
| animation-delay | 延迟。 |
| animation-iteration-count | 数。 |
| animation-direction |
相关页面
CSS3 教程:CSS3 动画