Gentle and easygoing
A relaxed idle stateFloats up and down 8% with a slight tilt, forever.
- Duration
- 3.5s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-ottori {
0% { transform: translate(0%, 8%) rotate(-2deg); }
100% { transform: translate(0%, -8%) rotate(2deg); }
}
.onoma-ottori {
animation: onoma-ottori 3.5s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-ottori { animation: none; }
}