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