Let out a little laugh
Small delightSwells softly to 106% and back.
- Duration
- 0.4s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-kusu {
0% { transform: scale(1, 1); }
50% { transform: scale(1.06, 1.06); }
100% { transform: scale(1, 1); }
}
.onoma-kusu {
animation: onoma-kusu 0.4s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-kusu { animation: none; }
}