Ledger Matrix
CSSFaint horizontal rows of numerical value placeholders scroll slowly, periodically highlighting coordinate axes and ticks.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Backgrounds and ambient
- Use cases
- Dashboards and reporting, Ambient background
- Industries
- Finance and fintech, Professional services
- Style
- Technical · light stroke
- Set
- treasury
- Tags
- barsminimalstaggerambient
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-ledger" data-pulsar="treasury-ledger" viewBox="0 0 160 96"><g stroke="currentColor" class="matrix-axis" opacity=".3"><line x1="28" x2="28" y1="16" y2="80"></line><line x1="68" x2="68" y1="16" y2="80" stroke-dasharray="2 4"></line><line x1="108" x2="108" y1="16" y2="80" stroke-dasharray="2 4"></line><line x1="138" x2="138" y1="16" y2="80"></line></g><g class="ledger-rows"><g class="ledger-row r1" transform="translate(0 26)"><line x1="34" x2="56" stroke="currentColor" stroke-linecap="round" stroke-width="2" opacity=".3"></line><line x1="74" x2="98" stroke="currentColor" stroke-linecap="round" stroke-width="2" opacity=".3"></line><line x1="114" x2="132" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2" opacity=".4"></line></g><g class="ledger-row r2" transform="translate(0 40)"><line x1="34" x2="60" stroke="currentColor" stroke-linecap="round" stroke-width="2" opacity=".3"></line><line x1="74" x2="92" stroke="currentColor" stroke-linecap="round" stroke-width="2" opacity=".3"></line><line x1="114" x2="128" stroke="currentColor" stroke-linecap="round" stroke-width="2" opacity=".3"></line></g><g class="ledger-row r3" transform="translate(0 54)"><line x1="34" x2="50" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2" opacity=".4"></line><line x1="74" x2="102" stroke="currentColor" stroke-linecap="round" stroke-width="2" opacity=".3"></line><line x1="114" x2="134" stroke="currentColor" stroke-linecap="round" stroke-width="2" opacity=".3"></line></g><g class="ledger-row r4" transform="translate(0 68)"><line x1="34" x2="62" stroke="currentColor" stroke-linecap="round" stroke-width="2" opacity=".3"></line><line x1="74" x2="88" stroke="currentColor" stroke-linecap="round" stroke-width="2" opacity=".3"></line><line x1="114" x2="130" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2" opacity=".4"></line></g></g><line x1="28" x2="138" y1="20" y2="20" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="12 4" stroke-width="1.5" class="scan-highlighter" opacity=".8"></line><g stroke="currentColor" stroke-width="1.2" class="axis-ticks" opacity=".5"><path d="M26 26h2m-2 14h2m-2 14h2m-2 14h2m110-42h2m-2 14h2m-2 14h2m-2 14h2"></path></g></svg>
animation.css
.pulsar-treasury-ledger {
display: block;
width: 100%;
height: 100%;
}
.pulsar-treasury-ledger .scan-highlighter {
animation: treasury-ledger-scan 4s ease-in-out infinite;
}
.pulsar-treasury-ledger .ledger-row.r1 {
animation: treasury-ledger-glow 4s ease-in-out infinite 0s;
}
.pulsar-treasury-ledger .ledger-row.r2 {
animation: treasury-ledger-glow 4s ease-in-out infinite -3s;
}
.pulsar-treasury-ledger .ledger-row.r3 {
animation: treasury-ledger-glow 4s ease-in-out infinite -2s;
}
.pulsar-treasury-ledger .ledger-row.r4 {
animation: treasury-ledger-glow 4s ease-in-out infinite -1s;
}
@keyframes treasury-ledger-scan {
0%,
100% {
transform: translateY(4px);
opacity: 0.3;
}
50% {
transform: translateY(50px);
opacity: 0.9;
}
}
@keyframes treasury-ledger-glow {
0%,
100% {
opacity: 0.35;
}
25% {
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-treasury-ledger .scan-highlighter,
.pulsar-treasury-ledger .ledger-row.r1,
.pulsar-treasury-ledger .ledger-row.r2,
.pulsar-treasury-ledger .ledger-row.r3,
.pulsar-treasury-ledger .ledger-row.r4 {
animation: none;
transform: none;
opacity: 0.6;
}
}