HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

animation-name

Description

The animation-name property for CSS defines a list of animations that apply. Each name is used to select the keyframe at-rule that provides the property values for the animation.

Syntax

CSS

animation-name: value;

JS

object.style.animationName = "value";

Values

<'animation-name'> = [ none | <keyframes-name> ]#
none

No keyframes are specified at all, so there will be no animation. Any other animations properties specified for this animation have no effect.

<keyframes-name> = <custom-ident> | <string>
<custom-ident>

Specifies any valid identifier that is not misinterpreted as a keyword.

<string>

Specifies a sequence of characters delimited by double quotes (") or single quotes (').

Initial

none

Examples

1 · keyframes-name

2 · none

3 · JS