勢いよく打ちつける
強い決定・登場200%の大きさから叩きつけるように現れ、6%揺れて止まる。
- 時間
- 0.5s
- くり返し
- しない
- 速さの変化
- ease-out
- 動かすもの
- 位置・大きさ・透明度 translate scale opacity
CSS を見る
@keyframes onoma-don {
0% { transform: translate(0%, 0%) scale(2, 2); opacity: 0; animation-timing-function: cubic-bezier(.55,0,1,.45); }
30% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; }
42% { transform: translate(-6%, 0%) scale(1, 1); opacity: 1; }
54% { transform: translate(4.2%, 0%) scale(1, 1); opacity: 1; }
66% { transform: translate(-2.4%, 0%) scale(1, 1); opacity: 1; }
78% { transform: translate(0.9%, 0%) scale(1, 1); opacity: 1; }
100% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; }
}
.onoma-don {
animation: onoma-don 0.5s ease-out both;
}
/* 動きを減らす設定の人には、現れるだけ */
@keyframes onoma-don-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-don { animation: onoma-don-fade 0.2s ease-out both; }
}