長く伸びて出る
引っぱって更新下の端から上へ69%伸び、弾むように元へ戻る。
- 時間
- 1.42s
- くり返し
- しない
- 速さの変化
- ease-in-out
- 動かすもの
- 大きさ scale
CSS を見る
@keyframes onoma-nyuu {
0% { transform: scale(1, 1); }
40% { transform: scale(0.76, 1.69); }
70% { transform: scale(1.07, 0.86); }
88% { transform: scale(1, 1.04); }
100% { transform: scale(1, 1); }
}
.onoma-nyuu {
animation: onoma-nyuu 1.42s ease-in-out both;
transform-origin: 50% 100%;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-nyuu { animation: none; }
}