Bend softly all at once
Soft press feedbackStretches 24% wide, then wobbles a few times back to shape.
- Duration
- 0.5s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-kunya {
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-kunya {
animation: onoma-kunya 0.5s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-kunya { animation: none; }
}