Move slowly
Unhurried progressGlides 45% each way, smoothly, forever.
- Duration
- 4s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position translate
Show CSS
@keyframes onoma-yukkuri {
0% { transform: translate(-45%, 0%); }
100% { transform: translate(45%, 0%); }
}
.onoma-yukkuri {
animation: onoma-yukkuri 4s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-yukkuri { animation: none; }
}