Soft and springy
Squishy after-pressStretches 18% wide, then wobbles a few times back to shape.
- Duration
- 0.9s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-mochimochi {
0% { transform: scale(1, 1); }
25% { transform: scale(1.18, 0.84); }
45% { transform: scale(0.89, 1.11); }
65% { transform: scale(1.05, 0.95); }
82% { transform: scale(0.98, 1.02); }
100% { transform: scale(1, 1); }
}
.onoma-mochimochi {
animation: onoma-mochimochi 0.9s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-mochimochi { animation: none; }
}