CSS property: -webkit-transition

Description

Combines -webkit-transition-delay, -webkit-transition-duration, -webkit-transition-property, and -webkit-transition-timing-function into a single property.

Syntax

-webkit-transition: <property> <duration> <timing_function> <delay> [, ...];

Values

<property>

Specifies the name of the CSS property to which the transition is applied. See -webkit-transition-property.

<duration>

Defines how long the transition from the old value to the new value should take. See -webkit-transition-duration.

<timing_function>

Specifies how the intermediate values used during a transition are calculated. See -webkit-transition-timing-function.

<delay>

Defines when the transition starts. See -webkit-transition-delay.

Versions