Brisk and lively
A lively characterBounces 15% high, squashing 6% on each landing, forever.
- Duration
- 0.46s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position · Scale translate scale
Show CSS
@keyframes onoma-chakichaki {
0% { transform: translate(0%, 0%) scale(1.06, 0.94); animation-timing-function: cubic-bezier(.3,.7,.5,1); }
50% { transform: translate(0%, -15%) scale(0.98, 1.02); animation-timing-function: cubic-bezier(.5,0,.7,.3); }
100% { transform: translate(0%, 0%) scale(1.06, 0.94); }
}
.onoma-chakichaki {
animation: onoma-chakichaki 0.46s ease-in-out infinite both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-chakichaki { animation: none; }
}