Spring up suddenly
Wake from sleepStretches 55% upward from its base and springs back.
- Duration
- 0.46s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-gaba {
0% { transform: scale(1, 1); }
40% { transform: scale(0.81, 1.55); }
70% { transform: scale(1.05, 0.89); }
88% { transform: scale(1, 1.03); }
100% { transform: scale(1, 1); }
}
.onoma-gaba {
animation: onoma-gaba 0.46s ease-in-out both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-gaba { animation: none; }
}