Specify a name for the @keyframes animation:
The animation-name property specifies a name for the @keyframes animation.
| Default value: | none |
|---|---|
| Inherited: | no |
| Animatable: | no. Read about animatable |
| Version: | CSS3 |
| JavaScript syntax: | object.style.animationName="myNEWmove" Try it |
The numbers in the table specify the first browser version that fully supports the property.
Numbers followed by -webkit-, -moz-, or -o- specify the first version that worked with a prefix.
| Property | |||||
|---|---|---|---|---|---|
| animation-name | 4.0 -webkit- | 10.0 | 16.0 5.0 -moz- |
4.0 -webkit- | 15.0 -webkit- 12.1 12.0 -o- |
| 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 |
CSS3 tutorial: CSS3 Animations
HTML DOM reference: animationName property