重たげにひと揺れする
重いパネルが揺れる横に14%伸びて縦に縮み、ぷるんと何度か揺れて戻る。
- 時間
- 1s
- くり返し
- しない
- 速さの変化
- ease-in-out
- 動かすもの
- 大きさ scale
CSS を見る
@keyframes onoma-yusa {
0% { transform: scale(1, 1); }
25% { transform: scale(1.14, 0.87); }
45% { transform: scale(0.92, 1.08); }
65% { transform: scale(1.04, 0.96); }
82% { transform: scale(0.99, 1.01); }
100% { transform: scale(1, 1); }
}
.onoma-yusa {
animation: onoma-yusa 1s ease-in-out both;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-yusa { animation: none; }
}