Flop into something soft
Flop onto a sofaSquashes 52% as if pressed from above, then bounces back.
- Duration
- 0.82s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-bofu {
0% { transform: scale(1, 1); }
30% { transform: scale(1.31, 0.48); }
60% { transform: scale(0.92, 1.1); }
82% { transform: scale(1.03, 0.97); }
100% { transform: scale(1, 1); }
}
.onoma-bofu {
animation: onoma-bofu 0.82s ease-in-out both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-bofu { animation: none; }
}