@mantruegood

CSS слайдер — Накладываются изображения после 4 слайда при использовании animation: round infinite и animation-delay, как быть?

Вот сам код HTML и CSS который я использую пример можно посмотреть вот тут zelsiteseo.ru блок с футбольной формой:

<div class="container_slider_css">
<img class="photo_slider_css" src='images/blockfoot/1.png' style="width:29%; position: absolute; margin-top:25px;" alt="" />
<img class="photo_slider_css" src='images/blockfoot/2.png' style="width:29%; position: absolute; margin-top:25px;" alt="" />
<img class="photo_slider_css" src='images/blockfoot/3.png' style="width:29%; position: absolute; margin-top:25px;" alt="" />
<img class="photo_slider_css" src='images/blockfoot/4.png' style="width:29%; position: absolute; margin-top:25px;" alt="" />
<img class="photo_slider_css" src='images/blockfoot/5.png' style="width:29%; position: absolute; margin-top:25px;" alt="" />
<img class="photo_slider_css" src='images/blockfoot/6.png' style="width:29%; position: absolute; margin-top:25px;" alt="" />
<img class="photo_slider_css" src='images/blockfoot/7.png' style="width:29%; position: absolute; margin-top:25px;" alt="" />
<img class="photo_slider_css" src='images/blockfoot/8.png' style="width:29%; position: absolute; margin-top:25px;" alt="" />
</div>


.container_slider_css{height:300px;position:relative}
.photo_slider_css{position:absolute; animation:round 16s infinite; opacity:0;width:100%}
@keyframes round {
25%{opacity:1}
40%{opacity:0}
}
img:nth-child(8){animation-delay:28s} 
img:nth-child(7){animation-delay:24s}
img:nth-child(6){animation-delay:20s}
img:nth-child(5){animation-delay:16s}
img:nth-child(4){animation-delay:12s}
img:nth-child(3){animation-delay:8s}
img:nth-child(2){animation-delay:4s}
img:nth-child(1){animation-delay:0}


Пример кода брал от сюда там самый первый слайдер автоматический на CSS, решил доработать но не вышло :( подскажите как можно решить, что только не перепробовал...
Если указывать разные картинки то на 4 5 слайде начинают сливаться 1 картинка и 5 потом 2 и 6 3 и 7 и 4 и 8 а первые 4 показываются нормально.
  • Вопрос задан
  • 295 просмотров
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы