Scurry around
Show searchingCircles around a 22% radius, forever.
- Duration
- 0.9s
- Repeats
- Yes
- Easing
- linear
- Animates
- Position translate
Show CSS
@keyframes onoma-urochoro {
0% { transform: translate(22%, 0%); }
8.33% { transform: translate(19.05%, 11%); }
16.67% { transform: translate(11%, 19.05%); }
25% { transform: translate(0%, 22%); }
33.33% { transform: translate(-11%, 19.05%); }
41.67% { transform: translate(-19.05%, 11%); }
50% { transform: translate(-22%, 0%); }
58.33% { transform: translate(-19.05%, -11%); }
66.67% { transform: translate(-11%, -19.05%); }
75% { transform: translate(0%, -22%); }
83.33% { transform: translate(11%, -19.05%); }
91.67% { transform: translate(19.05%, -11%); }
100% { transform: translate(22%, 0%); }
}
.onoma-urochoro {
animation: onoma-urochoro 0.9s linear infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-urochoro { animation: none; }
}