Route Assignment
CSSAn origin dispatch marker projects a curved routing vector across the coordinate network to bind with a designated destination waypoint node.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Determinate progress, Workflow and approvals
- Industries
- Logistics and supply chain, Cross-industry
- Style
- Data mark · light stroke
- Set
- manifest
- Tags
- linedotsminimal
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" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" class="pulsar pulsar-manifest-route-assignment" data-pulsar="manifest-route-assignment" viewBox="0 0 160 96"><circle cx="36" cy="48" r="5" fill="currentColor" fill-opacity=".15" stroke-width="1.5" class="origin"></circle><circle cx="124" cy="30" r="5" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="dest d1"></circle><circle cx="124" cy="48" r="4" stroke-width="1.5" opacity=".3"></circle><circle cx="124" cy="66" r="4" stroke-width="1.5" opacity=".3"></circle><path stroke="var(--pulsar-accent, currentColor)" stroke-width="2" d="M41 48c27 0 51-18 78-18" class="route-vector"></path></svg>
animation.css
.pulsar-manifest-route-assignment {
display: block;
overflow: visible;
}
.pulsar-manifest-route-assignment .route-vector {
stroke-dasharray: 90;
stroke-dashoffset: 90;
animation: manifest-route-assignment-vector 4000ms ease-in-out infinite;
}
.pulsar-manifest-route-assignment .dest.d1 {
animation: manifest-route-assignment-dest 4000ms ease-in-out infinite;
}
.pulsar-manifest-route-assignment .origin {
animation: manifest-route-assignment-orig 4000ms ease-in-out infinite;
}
@keyframes manifest-route-assignment-vector {
0%,
15% {
stroke-dashoffset: 90;
opacity: 0;
}
25% {
opacity: 1;
}
55%,
85% {
stroke-dashoffset: 0;
opacity: 1;
}
95%,
100% {
stroke-dashoffset: 90;
opacity: 0;
}
}
@keyframes manifest-route-assignment-dest {
0%,
45% {
transform: scale(0.9);
opacity: 0.4;
}
60%,
85% {
transform: scale(1.2);
opacity: 1;
}
95%,
100% {
transform: scale(0.9);
opacity: 0.4;
}
}
@keyframes manifest-route-assignment-orig {
0%,
100% {
opacity: 0.7;
}
50% {
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-manifest-route-assignment .route-vector,
.pulsar-manifest-route-assignment .dest.d1,
.pulsar-manifest-route-assignment .origin {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}