Wave Loader

보통

파도 효과 로더

#animation#css-only

라이브 데모

코드

loaders.css
@keyframes wave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}
.wave-bar:nth-child(n) { animation-delay: calc(n * 0.1s); }