Bypass
CSSA straight pathway of connected line segments is bypassed by a curved loop that detour-routes around a node, blinking to indicate unauthorized traffic.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Security and trust, Workflow and approvals
- Industries
- SaaS and software, Security and identity
- Style
- Minimal line · light stroke
- Set
- anomaly
- Tags
- linelooppulsestrokeminimal
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-anomaly-bypass" data-pulsar="anomaly-bypass" viewBox="0 0 160 96"><line x1="24" x2="68" y1="48" y2="48" stroke="currentColor" stroke-linecap="round" stroke-width="2" opacity=".6"></line><circle cx="80" cy="48" r="8" stroke="currentColor" stroke-width="1.8" opacity=".6"></circle><line x1="92" x2="136" y1="48" y2="48" stroke="currentColor" stroke-linecap="round" stroke-width="2" opacity=".6"></line><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2.5" d="M60 48c0-26 40-26 40 0" class="anomaly-bypass-arc"></path><circle cx="60" cy="48" r="3" fill="var(--pulsar-accent, currentColor)" class="anomaly-bypass-packet"></circle><circle cx="100" cy="48" r="6" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="anomaly-bypass-alert"></circle></svg>
animation.css
.pulsar-anomaly-bypass {
display: block;
overflow: visible;
}
.pulsar-anomaly-bypass .anomaly-bypass-arc {
stroke-dasharray: 80;
stroke-dashoffset: 80;
animation: anomaly-bypass-arc-anim 4200ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-anomaly-bypass .anomaly-bypass-packet {
animation: anomaly-bypass-packet-anim 4200ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-anomaly-bypass .anomaly-bypass-alert {
transform-origin: 100px 48px;
animation: anomaly-bypass-alert-anim 4200ms ease infinite;
}
@keyframes anomaly-bypass-arc-anim {
0%,
15% {
stroke-dashoffset: 80;
opacity: 0;
}
25% {
opacity: 1;
}
50%,
80% {
stroke-dashoffset: 0;
opacity: 1;
}
92%,
100% {
stroke-dashoffset: -80;
opacity: 0;
}
}
@keyframes anomaly-bypass-packet-anim {
0%,
25% {
transform: translate(0, 0);
opacity: 0;
}
30% {
opacity: 1;
}
45% {
transform: translate(20px, -24px);
}
60% {
transform: translate(40px, 0);
opacity: 1;
}
65%,
100% {
transform: translate(40px, 0);
opacity: 0;
}
}
@keyframes anomaly-bypass-alert-anim {
0%,
55% {
transform: scale(0.4);
opacity: 0;
}
62% {
opacity: 0.9;
}
80% {
transform: scale(1.6);
opacity: 0;
}
100% {
transform: scale(1.6);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-anomaly-bypass * {
animation: none !important;
}
}