Answer the question
In order to leave comments, you need to log in
How to make a looped animation?
There is a block with an image on it through css background-image, it needs to be animated so that the picture moves to the right all the time, I did this through css animation like this:
@keyframes loading {
0% {
background-position: 0px;
}
100% {
background-position: 100px;
}
}
animation: loading 1s infinite;
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question