Style animationName Property
Example
Changing the animationName property of a <div> element:
document.getElementById("myDIV").style.animationName = "myNEWmove";
Try it Yourself »
Definition and Usage
The animationName property sets or returns a name for the @keyframes animation.
Browser Support
The numbers in the table specify the first browser version that fully supports the property.
Property | |||||
---|---|---|---|---|---|
animationName | 43.0 | 10.0 | 16.0 | 9.0 | 30.0 |
Syntax
Return the animationName property:
object.style.animationName
Set the animationName property:
object.style.animationName = "none|keyframename|initial|inherit"
Property Values
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 |
Technical Details
Default Value: | none |
---|---|
Return Value: | A String, representing the animation-name property of an element |
CSS Version | CSS3 |
Related Pages
CSS reference: animation-name property