--- title: transition-delay slug: Web/CSS/transition-delay translation_of: Web/CSS/transition-delay browser-compat: css.properties.transition-delay ---
{{CSSRef}}{{SeeCompatTable}}

Summary

transition-delay CSS 속성은 transition될 속성이 transition 요청을 받은 이후 실제로 transition하기까지 기다려야하는 시간의 양을 지정합니다.

A value of 0s, or 0ms, indicates that the property will begin to animate its transition immediately when the value changes; positive values will delay the start of the transition effect for the corresponding number of seconds. Negative values cause the transition to begin immediately, but to cause the transition to seem to begin partway through the animation effect.

You may specify multiple delays; each delay will be applied to the corresponding property as specified by the {{cssxref("transition-property")}} property, which acts as a master list. If there are fewer delays specified than in the master list, missing values are set to the initial value (0s). If there are more delays, the list is simply truncated to the right size. In both case the CSS declaration stays valid.

{{cssinfo}}

Syntax

/* <time> values */
transition-delay: 3s;
transition-delay: 2s, 4ms;

/* Global values */
transition-delay: inherit;
transition-delay: initial;
transition-delay: unset;

Values

<time>
Is a {{cssxref("<time>")}} denoting the amount of time to wait between a property's value changing and the start of the animation effect.

Formal syntax

{{csssyntax}}

Examples

transition-delay: 0.5s

{{EmbedLiveSample("delay_0_5s",275,150)}}

transition-delay: 1s

{{EmbedLiveSample("delay_1s",275,150)}}

transition-delay: 2s

{{EmbedLiveSample("delay_2s",275,150)}}

transition-delay: 4s

{{EmbedLiveSample("delay_4s",275,150)}}

Specifications

Specification Status Comment
{{SpecName('CSS3 Transitions', '#transition-delay', 'transition-delay')}} {{Spec2('CSS3 Transitions')}} Initial definition

Browser compatibility

{{Compat}}

See also