Be utterly defeated
Defeat or failureSquashes 45% as if pressed from above, then bounces back.
- Duration
- 0.7s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-gyafun {
0% { transform: scale(1, 1); }
30% { transform: scale(1.27, 0.55); }
60% { transform: scale(0.93, 1.09); }
82% { transform: scale(1.02, 0.97); }
100% { transform: scale(1, 1); }
}
.onoma-gyafun {
animation: onoma-gyafun 0.7s ease-in-out both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-gyafun { animation: none; }
}