Jiggle heavily once
A heavy panel wobblesStretches 14% wide, then wobbles a few times back to shape.
- Duration
- 1s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show 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;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-yusa { animation: none; }
}