css animation don't loop code example
Example 1: css animation infinite loop
div {
animation-iteration-count: number|infinite|initial|inherit;
}
Example 2: make infinite keyframe
.waves {
animation: animatedImage 5s linear infinite;
}
@keyframes animatedImage {
0% { left: 2000px;}
100% { left: -2000px;}
}