目录

style animationName 属性

示例

更改 <div> 元素的animationName 属性:

document.getElementById("myDIV").style.animationName = "myNEWmove";
亲自试一试 »

描述

AnimationName 属性设置或返回 @keyframes 动画的名称。


语法

返回动画名称属性:

object.style.animationName

设置动画名称属性:

object.style.animationName = "none| keyframename|initial|inherit"

属性值

Value Description
none Default value. Specifies that there will be no animation (can be used to override animations coming from the cascade)
keyframename Specifies the name of the keyframe you want to bind to the selector
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

技术细节

默认值: 没有任何
返回值: 一个字符串,表示元素的动画名称属性
CSS版本 CSS3

浏览器支持

animationName是 CSS3 (1999) 的一项功能。

所有浏览器都完全支持它:

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes 11

相关页面

CSS 参考:动画名称属性