熱気が立ちこめる
熱気を表す160%まで広がりながら20%浮かび、ふっと消える。
- 時間
- 0.8s
- くり返し
- しない
- 速さの変化
- ease-out
- 動かすもの
- 位置・大きさ・透明度 translate scale opacity
CSS を見る
@keyframes onoma-muwa {
0% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; }
100% { transform: translate(0%, -20%) scale(1.6, 1.6); opacity: 0; }
}
.onoma-muwa {
animation: onoma-muwa 0.8s ease-out both;
}
/* 動きを減らす設定の人には、消えるだけ */
@keyframes onoma-muwa-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-muwa { animation: onoma-muwa-fade 0.2s ease-out both; }
}