勢いよく抜ける
取り出す操作少し沈んでから、上へ120%飛んでいって消える。
- 時間
- 0.4s
- くり返し
- しない
- 速さの変化
- cubic-bezier(.6,0,.9,.4)
- 動かすもの
- 位置・大きさ・透明度 translate scale opacity
CSS を見る
@keyframes onoma-supon {
0% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; animation-timing-function: ease-out; }
20% { transform: translate(0%, 8%) scale(1.08, 0.9); opacity: 1; }
100% { transform: translate(0%, -120%) scale(0.92, 1.12); opacity: 0; }
}
.onoma-supon {
animation: onoma-supon 0.4s cubic-bezier(.6,0,.9,.4) both;
}
/* 動きを減らす設定の人には、消えるだけ */
@keyframes onoma-supon-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-supon { animation: onoma-supon-fade 0.2s ease-out both; }
}