Answers for "repeat animation delay in css"

CSS
2

css animation delay

/* Answer to: "css animation delay" */

/*
  The animation-delay property specifies a delay for the start of an animation.
*/

div {
  animation-delay: 2s;
}
Posted by: Guest on June-29-2020
1

repeat css animation

/*infinite to loop*/
animation-iteration-count: number|infinite|initial|inherit;
Posted by: Guest on February-23-2021

Browse Popular Code Answers by Language