CSS property: -webkit-transition-delay

Description

Defines when the transition starts.

Syntax

-webkit-transition-delay: now | <time> [, ...];

Values

now

The transition begins immediately. Available in iPhone OS 2.0 and later.

<time>

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

Versions