目录

CSS animation-name 属性


示例

指定@keyframes动画的名称:

div {
  animation-name: mymove;
}
亲自试一试 »

定义和用法

这个animation-name属性指定一个名称@关键帧动画片。

默认值: 没有任何
遗传:
可动画: 不。阅读可动画的
版本: CSS3
JavaScript 语法: 对象.style.animationName="myNEWmove"尝试一下

浏览器支持

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

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

Property
animation-name 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: keyframename|none|initial|inherit;

属性值

Value Description
keyframename Specifies the name of the keyframe you want to bind to the selector
none Default value. Specifies that there will be no animation (can be used to override animations coming from the cascade)
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 参考:动画名称属性