Routing
CSSAn arrow entering a router gets redirected down one of three separate channels based on client subdomains.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Navigation and wayfinding, Automation and rules
- Industries
- SaaS and software, Cross-industry
- Style
- Minimal line · light stroke
- Set
- tenant
- Tags
- arrowlinegeometricminimalui
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-tenant-routing" data-pulsar="tenant-routing" viewBox="0 0 160 96"><line x1="24" x2="60" y1="48" y2="48" stroke="currentColor" stroke-linecap="round" stroke-width="2" opacity=".5"></line><circle cx="60" cy="48" r="3" fill="currentColor"></circle><path stroke="currentColor" stroke-linecap="round" stroke-width="1.5" d="M60 48c15 0 25-22 45-22h31" opacity=".3"></path><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2" d="M60 48h76"></path><path stroke="currentColor" stroke-linecap="round" stroke-width="1.5" d="M60 48c15 0 25 22 45 22h31" opacity=".3"></path><circle cx="24" cy="48" r="3" fill="var(--pulsar-accent, currentColor)" class="tenant-routing-packet"></circle></svg>
animation.css
.pulsar-tenant-routing {
display: block;
overflow: visible;
}
.pulsar-tenant-routing .tenant-routing-packet {
animation: tenant-routing-packet-anim 4000ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes tenant-routing-packet-anim {
0% {
transform: translateX(0);
opacity: 0;
}
15% {
opacity: 1;
}
75% {
transform: translateX(112px);
opacity: 1;
}
85%,
100% {
transform: translateX(112px);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-tenant-routing * {
animation: none !important;
}
}