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 规定设置过渡效果的 CSS 属性的名称。
animation-duration 规定完成过渡效果需要多少秒或毫秒。
animation-timing-function 规定速度效果的速度曲线。
animation-delay 定义过渡效果何时开始。
animation-iteration-count 规定设置过渡效果的 CSS 属性的名称。
animation-direction 规定设置过渡效果的 CSS 属性的名称。

相关页面

CSS3 教程:CSS3 动画