Answers for "animation not infinite"

CSS
4

animation shorthand css

animation: name time func delay iteration dir fill play;
animation: none 0s ease 0s 1 normal none running;

animation-name: none;
animation-duration: 0s;
animation-timing-function: ease;
animation-delay: 0s;
animation-iteration-count: 1;
animation-direction: normal;
animation-fill-mode: none;
animation-play-state: running;
Posted by: Guest on August-30-2020
0

css animation infinite loop

div {
  animation-iteration-count: number|infinite|initial|inherit;
}
Posted by: Guest on October-18-2020

Browse Popular Code Answers by Language