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