勢いよく起き上がる
スリープから復帰下の端から上へ55%伸び、弾むように元へ戻る。
- 時間
- 0.46s
- くり返し
- しない
- 速さの変化
- ease-in-out
- 動かすもの
- 大きさ scale
CSS を見る
@keyframes onoma-gaba {
0% { transform: scale(1, 1); }
40% { transform: scale(0.81, 1.55); }
70% { transform: scale(1.05, 0.89); }
88% { transform: scale(1, 1.03); }
100% { transform: scale(1, 1); }
}
.onoma-gaba {
animation: onoma-gaba 0.46s ease-in-out both;
transform-origin: 50% 100%;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-gaba { animation: none; }
}