Laugh out cheerfully
A character laughingStretches 12% 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-ahaha {
0% { transform: scale(1, 1); }
25% { transform: scale(1.12, 0.89); }
45% { transform: scale(0.93, 1.07); }
65% { transform: scale(1.04, 0.97); }
82% { transform: scale(0.99, 1.01); }
100% { transform: scale(1, 1); }
}
.onoma-ahaha {
animation: onoma-ahaha 0.5s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-ahaha { animation: none; }
}