Ambient Match
CSSHorizontal and vertical dashed scanlines glide across the screen, briefly illuminating grid nodes where they cross.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Backgrounds and ambient
- Use cases
- Sync and integration, Ambient background
- Industries
- Finance and fintech, Cross-industry
- Style
- Technical · light stroke
- Set
- treasury
- Tags
- gridpulseshimmerambient
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-treasury-reconciliation" data-pulsar="treasury-reconciliation" viewBox="0 0 160 96"><g stroke="currentColor" stroke-dasharray="2 5" class="matrix-grid" opacity=".2"><line x1="20" x2="140" y1="28" y2="28"></line><line x1="20" x2="140" y1="48" y2="48"></line><line x1="20" x2="140" y1="68" y2="68"></line><line x1="40" x2="40" y1="16" y2="80"></line><line x1="80" x2="80" y1="16" y2="80"></line><line x1="120" x2="120" y1="16" y2="80"></line></g><line x1="16" x2="144" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="6 3" stroke-width="1.5" class="scan-h" opacity=".7"></line><line x1="80" x2="80" y1="16" y2="80" stroke="currentColor" stroke-dasharray="6 3" stroke-width="1.5" class="scan-v" opacity=".6"></line><g class="match-reticle" transform="translate(80 48)"><rect width="12" height="12" x="-6" y="-6" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.25" transform="rotate(45)"></rect><circle r="2" fill="var(--pulsar-accent, currentColor)"></circle></g><g class="secondary-matches"><circle cx="40" cy="28" r="2.5" stroke="var(--pulsar-accent, currentColor)" class="sec-dot d1"></circle><circle cx="120" cy="68" r="2.5" stroke="var(--pulsar-accent, currentColor)" class="sec-dot d2"></circle></g></svg>
animation.css
.pulsar-treasury-reconciliation {
display: block;
width: 100%;
height: 100%;
}
.pulsar-treasury-reconciliation .scan-h {
animation: treasury-reconciliation-sweep-h 4s ease-in-out infinite;
}
.pulsar-treasury-reconciliation .scan-v {
animation: treasury-reconciliation-sweep-v 4s ease-in-out infinite;
}
.pulsar-treasury-reconciliation .match-reticle {
transform-origin: 80px 48px;
animation: treasury-reconciliation-reticle 4s ease-in-out infinite;
}
.pulsar-treasury-reconciliation .secondary-matches .sec-dot.d1 {
animation: treasury-reconciliation-sec-glow 4s ease-in-out infinite 0s;
}
.pulsar-treasury-reconciliation .secondary-matches .sec-dot.d2 {
animation: treasury-reconciliation-sec-glow 4s ease-in-out infinite -2s;
}
@keyframes treasury-reconciliation-sweep-h {
0%,
100% {
transform: translateY(-16px);
opacity: 0.4;
}
50% {
transform: translateY(16px);
opacity: 0.9;
}
}
@keyframes treasury-reconciliation-sweep-v {
0%,
100% {
transform: translateX(-30px);
opacity: 0.3;
}
50% {
transform: translateX(30px);
opacity: 0.8;
}
}
@keyframes treasury-reconciliation-reticle {
0%,
100% {
transform: scale(0.6) rotate(45deg);
opacity: 0.2;
}
48%,
52% {
transform: scale(1.3) rotate(45deg);
opacity: 1;
}
}
@keyframes treasury-reconciliation-sec-glow {
0%,
100% {
opacity: 0.2;
}
30% {
opacity: 0.9;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-treasury-reconciliation .scan-h,
.pulsar-treasury-reconciliation .scan-v,
.pulsar-treasury-reconciliation .match-reticle,
.pulsar-treasury-reconciliation .secondary-matches .sec-dot.d1,
.pulsar-treasury-reconciliation .secondary-matches .sec-dot.d2 {
animation: none;
transform: none;
opacity: 0.6;
}
}