Silky smooth
Polished idleFloats up and down 5% with a slight tilt, forever.
- Duration
- 2.8s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-subesube {
0% { transform: translate(0%, 5%) rotate(-1deg); }
100% { transform: translate(0%, -5%) rotate(1deg); }
}
.onoma-subesube {
animation: onoma-subesube 2.8s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-subesube { animation: none; }
}