Answer the question
In order to leave comments, you need to log in
The animation doesn't loop. Where is the error?
<div class="redirect-text">Подождите
<a href="#" class="link1">.</a>
<a href="#" class="link2">.</a>
<a href="#" class="link3">.</a>
</div>
.link1, .link2, .link3 {
opacity: 0;
animation-duration: 1s;
animation-name: appearance;
animation-iteration-count: infinite;
animation-fill-mode: forwards;
animation-timing-function: linear;
}
.link1, .link2, .link3
{
animation-delay: 0.2s;
}
.link2
{
animation-delay: 0.4s;
}
.link3
{
animation-delay: 0.6s;
}
@keyframes appearance
{
from
{
opacity: 1;
}
to
{
opacity: 1;
}
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