transition-delay
Description
The transition-delay property for CSS defines when the transition will start.
Syntax
CSS
transition-delay: value;
JS
object.style.transitionDelay = "value";
Values
<'transition-delay'> = <time>#
<time>
Defines how long of a delay there is between the start of the animation and when it begins executing.
ms
Milliseconds. There are 1000 milliseconds in 1 second.
s
Seconds.
Initial
0s