目录

CSS animation 属性


示例

使用简写属性将动画绑定到 <div> 元素:

div {
  animation: mymove 5s infinite;
}
亲自试一试 »

定义和用法

这个animationproperty 是以下属性的简写:

笔记:始终指定动画持续时间属性,否则持续时间为 0,并且永远不会播放。

展示演示❯

默认值: 无 0 缓解 0 1 正常 无运行
遗传:
可动画: 不。阅读可动画的
版本: CSS3
JavaScript 语法: 对象.style.animation="mymove 5s infinite"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

后跟 -webkit-、-moz- 或 -o- 的数字指定使用前缀的第一个版本。

Property
animation 43.0
4.0 -webkit-
10.0 16.0
5.0 -moz-
9.0
4.0 -webkit-
30.0
15.0 -webkit-
12.0 -o-


CSS 语法

animation: name duration timing-function delay iteration-count direction fill-mode play-state;

属性值

Value Description
animation-name Specifies the name of the keyframe you want to bind to the selector
animation-duration Specifies how many seconds or milliseconds an animation takes to complete
animation-timing-function Specifies the speed curve of the animation
animation-delay Specifies a delay before the animation will start
animation-iteration-count Specifies how many times an animation should be played
animation-direction Specifies whether or not the animation should play in reverse on alternate cycles
animation-fill-mode Specifies what values are applied by the animation outside the time it is executing
animation-play-state Specifies whether the animation is running or paused
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

相关页面

CSS教程:CSS 动画

HTML DOM 参考:动画属性