Answers for "css animation don't loop"

CSS
0

css animation infinite loop

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

make infinite keyframe

.waves {
    animation: animatedImage 5s linear infinite;
    }


@keyframes animatedImage {
    0% { left: 2000px;}
   100% { left: -2000px;}
}
Posted by: Guest on November-01-2020

Browse Popular Code Answers by Language