Rumble and roll heavily
Heavy loadingRolls back and forth 120% each way, rotating like a ball, forever.
- Duration
- 1.6s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-gorogoro {
0% { transform: translate(-120%, 0%) rotate(0deg); }
100% { transform: translate(120%, 0%) rotate(275.02deg); }
}
.onoma-gorogoro {
animation: onoma-gorogoro 1.6s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-gorogoro { animation: none; }
}