DNS
CSSAn incoming query arrow splits, attempting to target a non-responsive IP node before swiftly pivoting to target a healthy backup node.
- Tier
- CSS
- Dependencies
- None
- Duration
- 5.5 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Errors and warnings, Sync and integration
- Industries
- IT services and infrastructure, Cross-industry
- Style
- Technical · light stroke
- Set
- failover
- Tags
- arrowgeometriclinelooppulse
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-failover-dns" data-pulsar="failover-dns" viewBox="0 0 160 96"><g stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><circle cx="30" cy="48" r="14" fill="currentColor" fill-opacity=".06"></circle><path d="M20 48h20" opacity=".4"></path><path d="M30 34c5 4 5 24 0 28-5-4-5-24 0-28" opacity=".4"></path></g><g stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><rect id="failover-dns-node-p" width="38" height="22" x="108" y="20" fill="currentColor" fill-opacity=".08" rx="3"></rect><circle id="failover-dns-led-p" cx="116" cy="31" r="2.5" fill="currentColor"></circle><line x1="124" x2="138" y1="31" y2="31"></line><rect id="failover-dns-node-s" width="38" height="22" x="108" y="54" fill="var(--pulsar-accent, currentColor)" fill-opacity=".08" stroke="var(--pulsar-accent, currentColor)" rx="3"></rect><circle id="failover-dns-led-s" cx="116" cy="65" r="2.5" fill="var(--pulsar-accent, currentColor)"></circle><line x1="124" x2="138" y1="65" y2="65" stroke="var(--pulsar-accent, currentColor)"></line></g><path id="failover-dns-vec-p" stroke="currentColor" stroke-dasharray="3 3" stroke-linecap="round" stroke-width="1.5" d="M44 48c24 0 38-17 64-17"></path><path id="failover-dns-vec-s" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2" d="M44 48c24 0 38 17 64 17"></path><circle id="failover-dns-query" cx="72" cy="40" r="3" fill="var(--pulsar-accent, currentColor)"></circle></svg>
animation.css
.pulsar-failover-dns #failover-dns-node-p,
.pulsar-failover-dns #failover-dns-vec-p {
animation: failover-dns-prim-anim 5500ms ease-in-out infinite;
}
@keyframes failover-dns-prim-anim {
0%,
24% {
opacity: 1;
}
32%,
82% {
opacity: 0.2;
}
90%,
100% {
opacity: 1;
}
}
.pulsar-failover-dns #failover-dns-led-p {
animation: failover-dns-led-p-anim 5500ms ease-in-out infinite;
}
@keyframes failover-dns-led-p-anim {
0%,
22% {
opacity: 1;
}
28%,
84% {
opacity: 0.15;
}
92%,
100% {
opacity: 1;
}
}
.pulsar-failover-dns #failover-dns-node-s,
.pulsar-failover-dns #failover-dns-vec-s {
animation: failover-dns-sec-anim 5500ms ease-in-out infinite;
}
@keyframes failover-dns-sec-anim {
0%,
30% {
opacity: 0.3;
}
38%,
82% {
opacity: 1;
}
90%,
100% {
opacity: 0.3;
}
}
.pulsar-failover-dns #failover-dns-led-s {
animation: failover-dns-led-s-anim 5500ms ease-in-out infinite;
}
@keyframes failover-dns-led-s-anim {
0%,
32% {
transform: scale(0.7);
opacity: 0.3;
}
42%,
82% {
transform: scale(1.3);
opacity: 1;
}
90%,
100% {
transform: scale(0.7);
opacity: 0.3;
}
}
.pulsar-failover-dns #failover-dns-query {
animation: failover-dns-query-anim 5500ms ease-in-out infinite;
}
@keyframes failover-dns-query-anim {
0% {
opacity: 0;
transform: translate(-28px, 8px);
}
15% {
opacity: 1;
transform: translate(6px, -9px);
}
26% {
opacity: 0.2;
transform: translate(32px, -9px);
}
34% {
opacity: 0;
transform: translate(-28px, 8px);
}
44% {
opacity: 1;
transform: translate(6px, 17px);
}
60%,
78% {
opacity: 1;
transform: translate(34px, 25px);
}
86%,
100% {
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-failover-dns * {
animation: none !important;
}
}