Bend out of shape
Soft press feedbackStretches 28% 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-gunya {
0% { transform: scale(1, 1); }
25% { transform: scale(1.28, 0.75); }
45% { transform: scale(0.83, 1.17); }
65% { transform: scale(1.08, 0.93); }
82% { transform: scale(0.97, 1.03); }
100% { transform: scale(1, 1); }
}
.onoma-gunya {
animation: onoma-gunya 0.8s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-gunya { animation: none; }
}