Sync
CSSTwo curved arrow paths forming a circle chase each other endlessly, with a horizontal document page icon in the center fading in and out.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Sync and integration
- Industries
- Legal, Cross-industry
- Style
- Minimal line · light stroke
- Set
- clause
- Tags
- arrowcirclerotateloop
Companion assets
The same artwork, not animated. Derived from the entry’s own resting state, so it matches exactly.
Code
animation.svg
<svg xmlns="http://www.w3.org/2000/svg" fill="none" aria-hidden="true" class="pulsar pulsar-clause-sync" data-pulsar="clause-sync" viewBox="0 0 160 96"><g class="arrows-chase" transform="translate(80 48)"><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.75" d="M-22 0a22 22 0 0 1 40-12"></path><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" d="m14-16 4 4-4 4"></path><path stroke="currentColor" stroke-linecap="round" stroke-width="1.75" d="M22 0a22 22 0 0 1-40 12" opacity=".6"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" d="m-14 16-4-4 4-4" opacity=".6"></path></g><g stroke="currentColor" stroke-width="1.25" class="doc-core"><rect width="16" height="16" x="72" y="40" opacity=".4" rx="2"></rect><line x1="75" x2="85" y1="45" y2="45" stroke-linecap="round" opacity=".7"></line><line x1="75" x2="82" y1="51" y2="51" stroke-linecap="round" opacity=".7"></line></g></svg>
animation.css
.pulsar-clause-sync {
display: block;
width: 100%;
height: 100%;
}
.pulsar-clause-sync .arrows-chase {
transform-origin: 80px 48px;
animation: clause-sync-rotate 4s linear infinite;
}
.pulsar-clause-sync .doc-core {
animation: clause-sync-pulse 4s ease-in-out infinite;
}
@keyframes clause-sync-rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes clause-sync-pulse {
0%,
100% {
opacity: 0.35;
}
50% {
opacity: 0.9;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-clause-sync .arrows-chase,
.pulsar-clause-sync .doc-core {
animation: none;
transform: none;
opacity: 0.8;
}
}