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