Catch firmly
Accept an inputSquashes 7% as if pressed from above, then bounces back.
- Duration
- 0.2s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-pashi {
0% { transform: scale(1, 1); }
30% { transform: scale(1.04, 0.93); }
60% { transform: scale(0.99, 1.01); }
82% { transform: scale(1, 1); }
100% { transform: scale(1, 1); }
}
.onoma-pashi {
animation: onoma-pashi 0.2s ease-in-out both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-pashi { animation: none; }
}