Firm and springy
Press feedbackStretches 16% wide, then wobbles a few times back to shape.
- Duration
- 0.46s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-puri {
0% { transform: scale(1, 1); }
25% { transform: scale(1.16, 0.86); }
45% { transform: scale(0.9, 1.1); }
65% { transform: scale(1.05, 0.96); }
82% { transform: scale(0.98, 1.02); }
100% { transform: scale(1, 1); }
}
.onoma-puri {
animation: onoma-puri 0.46s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-puri { animation: none; }
}