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