Jiggle and settle
Card settles inStretches 24% wide, then wobbles a few times back to shape.
- Duration
- 0.8s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show 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;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-purun { animation: none; }
}