Zone out blankly
Idle, spaced-out characterFloats up and down 4% with a slight tilt, forever.
- Duration
- 3.8s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-nuboo {
0% { transform: translate(0%, 4%) rotate(-6deg); }
100% { transform: translate(0%, -4%) rotate(6deg); }
}
.onoma-nuboo {
animation: onoma-nuboo 3.8s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-nuboo { animation: none; }
}