Creak under weight
Place something heavySquashes 10% as if pressed from above, then bounces back.
- Duration
- 0.46s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-mishi {
0% { transform: scale(1, 1); }
30% { transform: scale(1.06, 0.9); }
60% { transform: scale(0.98, 1.02); }
82% { transform: scale(1, 0.99); }
100% { transform: scale(1, 1); }
}
.onoma-mishi {
animation: onoma-mishi 0.46s ease-in-out both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-mishi { animation: none; }
}