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