こぼれ落ちる
項目が外れる12°傾きながら、下へ120%落ちて消える。
- 時間
- 0.56s
- くり返し
- しない
- 速さの変化
- cubic-bezier(.55,0,1,.45)
- 動かすもの
- 位置・回転・透明度 translate rotate opacity
CSS を見る
@keyframes onoma-poro {
0% { transform: translate(0%, 0%) rotate(0deg); opacity: 1; }
75% { transform: translate(0%, 90%) rotate(9deg); opacity: 1; }
100% { transform: translate(0%, 120%) rotate(12deg); opacity: 0; }
}
.onoma-poro {
animation: onoma-poro 0.56s cubic-bezier(.55,0,1,.45) both;
}
/* 動きを減らす設定の人には、消えるだけ */
@keyframes onoma-poro-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-poro { animation: onoma-poro-fade 0.2s ease-out both; }
}