Slick and smooth
A smooth, slick feelGlides 50% each way, smoothly, forever.
- Duration
- 1.2s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position translate
Show CSS
@keyframes onoma-tsurutsuru {
0% { transform: translate(-50%, 0%); }
100% { transform: translate(50%, 0%); }
}
.onoma-tsurutsuru {
animation: onoma-tsurutsuru 1.2s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-tsurutsuru { animation: none; }
}