Crawl along slowly
Wait on a slow networkGlides 20% each way, smoothly, forever.
- Duration
- 3.6s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position translate
Show CSS
@keyframes onoma-noronoro {
0% { transform: translate(-20%, 0%); }
100% { transform: translate(20%, 0%); }
}
.onoma-noronoro {
animation: onoma-noronoro 3.6s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-noronoro { animation: none; }
}