Go limp at once
Pause or switch offSquashes 24% as if pressed from above, then bounces back.
- Duration
- 0.6s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-kuta {
0% { transform: scale(1, 1); }
30% { transform: scale(1.14, 0.76); }
60% { transform: scale(0.96, 1.05); }
82% { transform: scale(1.01, 0.99); }
100% { transform: scale(1, 1); }
}
.onoma-kuta {
animation: onoma-kuta 0.6s ease-in-out both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-kuta { animation: none; }
}