Outlier
CSSA neat cluster of five circular nodes is joined by a sixth node that drifts far outside the group and pulses.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.5 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Errors and warnings, Security and trust
- Industries
- SaaS and software, Security and identity
- Style
- Minimal line · light stroke
- Set
- anomaly
- Tags
- circledotsorbitpulseminimal
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-outlier" data-pulsar="anomaly-outlier" viewBox="0 0 160 96"><circle cx="62" cy="50" r="22" stroke="currentColor" stroke-dasharray="3 3" stroke-width="1.5" opacity=".3"></circle><g fill="currentColor" opacity=".7"><circle cx="54" cy="42" r="3"></circle><circle cx="70" cy="40" r="3"></circle><circle cx="50" cy="56" r="3"></circle><circle cx="68" cy="58" r="3"></circle><circle cx="62" cy="49" r="3.5"></circle></g><g class="anomaly-outlier-rogue"><circle cx="64" cy="50" r="3.5" fill="var(--pulsar-accent, currentColor)"></circle><line x1="64" x2="124" y1="50" y2="30" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="2 3" opacity=".5"></line><circle cx="124" cy="30" r="8" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="anomaly-outlier-halo"></circle></g></svg>
animation.css
.pulsar-anomaly-outlier {
display: block;
overflow: visible;
}
.pulsar-anomaly-outlier .anomaly-outlier-rogue {
animation: anomaly-outlier-drift-anim 4500ms cubic-bezier(0.3, 0, 0.2, 1) infinite;
}
.pulsar-anomaly-outlier .anomaly-outlier-halo {
transform-origin: 124px 30px;
animation: anomaly-outlier-halo-anim 4500ms ease infinite;
}
@keyframes anomaly-outlier-drift-anim {
0%,
15% {
transform: translate(0, 0);
}
45%,
80% {
transform: translate(60px, -20px);
}
92%,
100% {
transform: translate(0, 0);
}
}
@keyframes anomaly-outlier-halo-anim {
0%,
45% {
transform: scale(0.4);
opacity: 0;
}
55% {
opacity: 0.9;
}
75% {
transform: scale(1.6);
opacity: 0;
}
100% {
transform: scale(1.6);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-anomaly-outlier * {
animation: none !important;
}
}