Struggle to stay afloat
Overwhelmed with workFloats up and down 20% with a slight tilt, forever.
- Duration
- 0.8s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-appuappu {
0% { transform: translate(0%, 20%) rotate(-8deg); }
100% { transform: translate(0%, -20%) rotate(8deg); }
}
.onoma-appuappu {
animation: onoma-appuappu 0.8s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-appuappu { animation: none; }
}