Answers for "animation css delay and loop"

CSS
4

css animation loop

animation-iteration-count:infinite;
Posted by: Guest on March-02-2021
3

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

Browse Popular Code Answers by Language