Buzz around
Patrolling / processingCircles around a 40% radius, forever.
- Duration
- 1.4s
- Repeats
- Yes
- Easing
- linear
- Animates
- Position translate
Show CSS
@keyframes onoma-buun {
0% { transform: translate(40%, 0%); }
8.33% { transform: translate(34.64%, 20%); }
16.67% { transform: translate(20%, 34.64%); }
25% { transform: translate(0%, 40%); }
33.33% { transform: translate(-20%, 34.64%); }
41.67% { transform: translate(-34.64%, 20%); }
50% { transform: translate(-40%, 0%); }
58.33% { transform: translate(-34.64%, -20%); }
66.67% { transform: translate(-20%, -34.64%); }
75% { transform: translate(0%, -40%); }
83.33% { transform: translate(20%, -34.64%); }
91.67% { transform: translate(34.64%, -20%); }
100% { transform: translate(40%, 0%); }
}
.onoma-buun {
animation: onoma-buun 1.4s linear infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-buun { animation: none; }
}