You are here : cssCSS 3transition-delay

transition-delay - CSS 3

The transition-delay property specifies when the transition effect will start.The transition-delay value is defined in seconds (s) or milliseconds (ms).


Syntax

transition-delay: time|initial|inherit;


Example

div {   
    -webkit-transition-delay: 2s; /* Safari */   
    transition-delay: 2s;}


Output / Return Value


Limitations


Alternatives / See Also


Reference