animation-delay

Draft

Definition

The animation-delay CSS property is used to define when the animation should start. It can be a time value, expressed in seconds (s) or milliseconds (ms). The default value is 0s, meaning the animation will start immediately.

.element {
  animation-delay: 2s;
}

Related posts