You are here : cssCSS 3animation-delay

animation-delay - CSS 3

The animation-delay property specifies a delay for the start of an animation.The animation-delay value is defined in seconds (s) or milliseconds (ms).


Syntax

animation-delay: time|initial|inherit;


Example

div {    -webkit-animation-delay: 2s; /* Chrome, Safari, Opera */   
    animation-delay: 2s;}


Output / Return Value


Limitations


Alternatives / See Also


Reference