Keep bouncing softly
Relaxed idleBounces 15% high, squashing 24% on each landing, forever.
- Duration
- 0.9s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position · Scale translate scale
Show CSS
@keyframes onoma-poyopoyo {
0% { transform: translate(0%, 0%) scale(1.24, 0.76); animation-timing-function: cubic-bezier(.3,.7,.5,1); }
50% { transform: translate(0%, -15%) scale(0.92, 1.08); animation-timing-function: cubic-bezier(.5,0,.7,.3); }
100% { transform: translate(0%, 0%) scale(1.24, 0.76); }
}
.onoma-poyopoyo {
animation: onoma-poyopoyo 0.9s ease-in-out infinite both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-poyopoyo { animation: none; }
}