水が勢いよくはねる
水しぶきで消す190%まで一気に広がって、はじけるように消える。
- 時間
- 0.4s
- くり返し
- しない
- 速さの変化
- ease-out
- 動かすもの
- 大きさ・透明度 scale opacity
CSS を見る
@keyframes onoma-basha {
0% { transform: scale(1, 1); opacity: 1; }
35% { transform: scale(1.45, 1.45); opacity: 1; }
100% { transform: scale(1.9, 1.9); opacity: 0; }
}
.onoma-basha {
animation: onoma-basha 0.4s ease-out both;
}
/* 動きを減らす設定の人には、消えるだけ */
@keyframes onoma-basha-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-basha { animation: onoma-basha-fade 0.2s ease-out both; }
}