Crushed flat
Heavy impact reactionSquashes 58% as if pressed from above, then bounces back.
- Duration
- 0.36s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-gusha {
0% { transform: scale(1, 1); }
30% { transform: scale(1.35, 0.42); }
60% { transform: scale(0.91, 1.12); }
82% { transform: scale(1.03, 0.97); }
100% { transform: scale(1, 1); }
}
.onoma-gusha {
animation: onoma-gusha 0.36s ease-in-out both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-gusha { animation: none; }
}