Laugh it off
Soften a mistakeStretches 8% 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-hera {
0% { transform: scale(1, 1); }
25% { transform: scale(1.08, 0.93); }
45% { transform: scale(0.95, 1.05); }
65% { transform: scale(1.02, 0.98); }
82% { transform: scale(0.99, 1.01); }
100% { transform: scale(1, 1); }
}
.onoma-hera {
animation: onoma-hera 0.5s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-hera { animation: none; }
}