Decision Matrix
CSSA three-by-three crosshair matrix lights up node-by-node in a synchronized evaluation wave.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Workflow and approvals
- Industries
- Insurance, Cross-industry
- Style
- Technical · light stroke
- Set
- underwrite
- Tags
- griddotspulseloop
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-underwrite-matrix" data-pulsar="underwrite-matrix" viewBox="0 0 160 96"><rect width="76" height="64" x="42" y="16" stroke="currentColor" opacity=".25" rx="3"></rect><line x1="67" x2="67" y1="16" y2="80" stroke="currentColor" opacity=".2"></line><line x1="93" x2="93" y1="16" y2="80" stroke="currentColor" opacity=".2"></line><line x1="42" x2="118" y1="37" y2="37" stroke="currentColor" opacity=".2"></line><line x1="42" x2="118" y1="59" y2="59" stroke="currentColor" opacity=".2"></line><g class="matrix-node m11"><circle cx="54" cy="26" r="3" fill="var(--pulsar-accent, currentColor)"></circle><path stroke="currentColor" d="M51 26h6m-3-3v6"></path></g><g class="matrix-node m12"><circle cx="80" cy="26" r="3" fill="var(--pulsar-accent, currentColor)"></circle><path stroke="currentColor" d="M77 26h6m-3-3v6"></path></g><g class="matrix-node m13"><circle cx="106" cy="26" r="3" fill="var(--pulsar-accent, currentColor)"></circle><path stroke="currentColor" d="M103 26h6m-3-3v6"></path></g><g class="matrix-node m21"><circle cx="54" cy="48" r="3" fill="var(--pulsar-accent, currentColor)"></circle><path stroke="currentColor" d="M51 48h6m-3-3v6"></path></g><g class="matrix-node m22"><circle cx="80" cy="48" r="4" fill="var(--pulsar-accent, currentColor)"></circle><path stroke="currentColor" stroke-width="1.5" d="M76 48h8m-4-4v8"></path></g><g class="matrix-node m23"><circle cx="106" cy="48" r="3" fill="var(--pulsar-accent, currentColor)"></circle><path stroke="currentColor" d="M103 48h6m-3-3v6"></path></g><g class="matrix-node m31"><circle cx="54" cy="70" r="3" fill="var(--pulsar-accent, currentColor)"></circle><path stroke="currentColor" d="M51 70h6m-3-3v6"></path></g><g class="matrix-node m32"><circle cx="80" cy="70" r="3" fill="var(--pulsar-accent, currentColor)"></circle><path stroke="currentColor" d="M77 70h6m-3-3v6"></path></g><g class="matrix-node m33"><circle cx="106" cy="70" r="3" fill="var(--pulsar-accent, currentColor)"></circle><path stroke="currentColor" d="M103 70h6m-3-3v6"></path></g></svg>
animation.css
.pulsar-underwrite-matrix {
display: block;
width: 100%;
height: 100%;
}
.pulsar-underwrite-matrix .matrix-node {
animation: underwrite-matrix-eval 4s ease-in-out infinite;
}
.pulsar-underwrite-matrix .m11 {
animation-delay: 0s;
}
.pulsar-underwrite-matrix .m12,
.pulsar-underwrite-matrix .m21 {
animation-delay: 0.3s;
}
.pulsar-underwrite-matrix .m13,
.pulsar-underwrite-matrix .m22,
.pulsar-underwrite-matrix .m31 {
animation-delay: 0.6s;
}
.pulsar-underwrite-matrix .m23,
.pulsar-underwrite-matrix .m32 {
animation-delay: 0.9s;
}
.pulsar-underwrite-matrix .m33 {
animation-delay: 1.2s;
}
@keyframes underwrite-matrix-eval {
0%,
15% {
opacity: 0.2;
transform: scale(0.8);
}
35% {
opacity: 1;
transform: scale(1.2);
}
60%,
100% {
opacity: 0.4;
transform: scale(1);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-underwrite-matrix .matrix-node {
animation: none;
transform: none;
opacity: 1;
}
}