ドットの動きを加える設定(css)

PHOTO EMBED

Sat Mar 08 2025 03:53:43 GMT+0000 (Coordinated Universal Time)

Saved by @erika

.dot__item {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fafafa;
    animation: wave 1.5s infinite ease-in-out;
}

.dot__item:nth-of-type(1) {
    animation: wave 1.5s infinite ease-in-out;
}

.dot__item:nth-of-type(2) {
    animation: wave 1.5s 0.2s infinite ease-in-out;
}

.dot__item:nth-of-type(3) {
    animation: wave 1.5s 0.4s infinite ease-in-out;
}
content_copyCOPY

waveのあとの1.5sは○秒間でキーフレームをwabeさせてくださいという設定 1.5sのあとの0.2sは遅れてアニメーション(wave)させてくださいという設定