CSS property: -webkit-animation-delay

Description

Defines when an animation starts.

This property allows an animation to begin execution some time after it is applied.

Syntax

-webkit-animation-delay: <time> [, ...];

Values

<time>

The time to begin executing an animation after it is applied. If 0, the animation executes as soon as it is applied. If positive, it specifies an offset from the moment the animation is applied, and the animation delays execution by that offset. If negative, the animation executes the moment the property changes but appears to begin at the specified negative offset—that is, begins part-way through the animation. Nonzero values must specify a unit: s for seconds, ms for milliseconds.

0 (by default)The default value is 0.
nowThe animation begins immediately. Available in iOS 2.0 and later.

Versions