как добавить импульсную анимацию для 6 кругов один за другим в цикле - PullRequest
0 голосов
/ 20 апреля 2020

Я хотел бы сделать анимацию пульса на 6 делений один за другим с помощью al oop. Я имею в виду, если у меня 6 кругов, мой первый круг должен масштабироваться до 1,5, следующий 2-й круг, так до последнего круга. Опять же это l oop должно работать. Просто мигающий трафик c постоянно горит один за другим, который я пытался реализовать, но где-то мне не хватает. Пожалуйста, проверьте мой код ниже и предложите мне, как добиться этой функциональности.

HTML:

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="inner">a</div>
<div class="inner">b</div>
<div class="inner">c</div>
<div class="inner">d</div>
<div class="inner">e</div>
<div class="inner">f</div>

CSS:

.inner {
  display: inline-block;
  vertical-align: top;
  width: 74px;
  height: 74px;
  background: #fff;
  border: 1px solid #000;
  position: relative;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 20px;
  text-align: center;
  margin: 10px;
  animation: pulse 1s infinite linear;
}

@keyframes pulse {
  0% {
    transform: scaleX(1)
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05)
  }
  to {
    transform: scaleX(1)
  }
}

JS :

let els = $(".inner"),
  length = $(".inner").length

els.each(function(index) {

  $(this).css('animation-delay', (index / length) + 's')
})

1 Ответ

0 голосов
/ 02 мая 2020

Вы можете определить различные animation-duration в CSS для каждого nth-child

.inner:nth-child(2) {
  animation-duration: 2s;
}

.inner {
  display: inline-block;
  vertical-align: top;
  width: 74px;
  height: 74px;
  background: #fff;
  border: 1px solid #000;
  position: relative;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 20px;
  text-align: center;
  margin: 10px;
  animation: pulse 1.5s infinite linear;
}

@keyframes pulse {
  0% {
    transform: scaleX(1)
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05)
  }
  100% {
    transform: scaleX(1)
  }
}

.inner:nth-child(2) {
  animation-duration: 2s;
}

.inner:nth-child(3) {
  animation-duration: 2.5s;
}

.inner:nth-child(4) {
  animation-duration: 3s;
}

.inner:nth-child(5) {
  animation-duration: 3.5s;
}

.inner:nth-child(6) {
  animation-duration: 4s;
}
<div class="inner">a</div>
<div class="inner">b</div>
<div class="inner">c</div>
<div class="inner">d</div>
<div class="inner">e</div>
<div class="inner">f</div>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...