ローディング
CSS

Bounce Dots

3つのドットが弾むローダー。軽快な印象。

HTML
<div class="bounce-wrap">
  <span class="bd"></span><span class="bd"></span><span class="bd"></span>
</div>
CSS
.bounce-wrap {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 30px;
}
.bd {
  width: 8px;
  height: 8px;
  background: #1a1a1a;
  border-radius: 50%;
  animation: bd-bounce .6s ease-in-out infinite alternate;
}
.bd:nth-child(2) { animation-delay: .15s; }
.bd:nth-child(3) { animation-delay: .3s; }
@keyframes bd-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-14px); }
}