弾んで揺れ戻る
カードが着地する横に24%伸びて縦に縮み、ぷるんと何度か揺れて戻る。
- 時間
- 0.8s
- くり返し
- しない
- 速さの変化
- ease-in-out
- 動かすもの
- 大きさ scale
CSS を見る
@keyframes onoma-purun {
0% { transform: scale(1, 1); }
25% { transform: scale(1.24, 0.78); }
45% { transform: scale(0.86, 1.14); }
65% { transform: scale(1.07, 0.94); }
82% { transform: scale(0.98, 1.02); }
100% { transform: scale(1, 1); }
}
.onoma-purun {
animation: onoma-purun 0.8s ease-in-out both;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-purun { animation: none; }
}