拡大縮小のアニメーションの設定(css)

PHOTO EMBED

Sat Mar 08 2025 03:47:39 GMT+0000 (Coordinated Universal Time)

Saved by @erika

/* animation */
@keyframes wave {
    0% {
        opacity: 0;
        transform: scale(1, 1);
    }
    50% {
        opacity: 1;
        transform: scale(2, 2);
    }
    100% {
        opacity: 0;
        transform: scale(1, 1);
    }
}
content_copyCOPY

0⇨5⇨100の順に動きが変わっていく設定 transform: scale(1, 1);:大きさの設定