Scatter
CSSA scatter plot of dots where several dots suddenly disperse outward in random directions while a bounding box shrinks around them.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Dashboards and reporting, Security and trust
- Industries
- Security and identity, Cross-industry
- Style
- Minimal line · light stroke
- Set
- anomaly
- Tags
- dotsburstgeometricparticlesminimal
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-scatter" data-pulsar="anomaly-scatter" viewBox="0 0 160 96"><rect width="56" height="44" x="52" y="26" stroke="currentColor" stroke-dasharray="3 3" stroke-width="1.5" class="anomaly-scatter-bbox" opacity=".4" rx="4"></rect><circle cx="74" cy="44" r="2.5" fill="currentColor" opacity=".6"></circle><circle cx="86" cy="52" r="2.5" fill="currentColor" opacity=".6"></circle><circle cx="80" cy="48" r="3" fill="currentColor" opacity=".8"></circle><circle cx="80" cy="48" r="3" fill="var(--pulsar-accent, currentColor)" class="anomaly-scatter-dot-1"></circle><circle cx="80" cy="48" r="3" fill="var(--pulsar-accent, currentColor)" class="anomaly-scatter-dot-2"></circle><circle cx="80" cy="48" r="3" fill="var(--pulsar-accent, currentColor)" class="anomaly-scatter-dot-3"></circle></svg>
animation.css
.pulsar-anomaly-scatter {
display: block;
overflow: visible;
}
.pulsar-anomaly-scatter .anomaly-scatter-bbox {
transform-origin: 80px 48px;
animation: anomaly-scatter-bbox-anim 4000ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-anomaly-scatter .anomaly-scatter-dot-1 {
animation: anomaly-scatter-dot1-anim 4000ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-anomaly-scatter .anomaly-scatter-dot-2 {
animation: anomaly-scatter-dot2-anim 4000ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-anomaly-scatter .anomaly-scatter-dot-3 {
animation: anomaly-scatter-dot3-anim 4000ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
@keyframes anomaly-scatter-bbox-anim {
0%,
20% {
transform: scale(0.7);
opacity: 0.3;
}
42%,
78% {
transform: scale(1.3);
opacity: 0.8;
}
90%,
100% {
transform: scale(0.7);
opacity: 0.3;
}
}
@keyframes anomaly-scatter-dot1-anim {
0%,
20% {
transform: translate(0, 0);
}
42%,
78% {
transform: translate(-36px, -18px);
}
90%,
100% {
transform: translate(0, 0);
}
}
@keyframes anomaly-scatter-dot2-anim {
0%,
20% {
transform: translate(0, 0);
}
42%,
78% {
transform: translate(38px, -14px);
}
90%,
100% {
transform: translate(0, 0);
}
}
@keyframes anomaly-scatter-dot3-anim {
0%,
20% {
transform: translate(0, 0);
}
42%,
78% {
transform: translate(24px, 22px);
}
90%,
100% {
transform: translate(0, 0);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-anomaly-scatter * {
animation: none !important;
}
}