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