animation

英[ˌænɪˈmeɪʃn] 美[ˌænəˈmeʃən]

n. Angry, lively; cartoon production, cartoon shooting; [film and television] animation

Plural: animations

name

英[neɪm] 美[nem]

n. Name; reputation; have... name of; a famous person

vt. to determine; to decide; to name...; to name... Singular: names Plural: names Present participle: naming Past tense: named Past participle: named

css3 animation-name property syntax

Function:animation-name attribute specifies the name of @keyframes animation.

Syntax:animation-name: keyframename|none;
Description:keyframename specifies the name of the keyframe that needs to be bound to the selector. none specifies no animation effect (can be used to override animations from the cascade).

Note:Please always specify the animation-duration attribute, otherwise the duration is 0 and the animation will not be played.

css3 The animation-name property is used to retrieve or set the animation name applied to the object. It must be used in conjunction with @keyframes, because the animation name is defined by @keyframes. If there are multiple attribute values, they can be separated by commas

css3 animation-name property example

    

注释:Internet Explorer 9 以及更早的版本不支持 animation-name 属性。

注释:始终规定 animation-duration 属性,否则时长为 0,就不会播放动画了。


Run instance »

Click the "Run instance" button to view the online instance