Liquidity Forecast Curve
CSSA delicate, multi-tiered sine wave drifts horizontally across a faint background grid with vertical timeline ticks.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Backgrounds and ambient
- Use cases
- Dashboards and reporting, Ambient background
- Industries
- Finance and fintech, Cross-industry
- Style
- Technical · light stroke
- Set
- treasury
- Tags
- wavechartlineambient
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-forecast" data-pulsar="treasury-forecast" viewBox="0 0 160 96"><g stroke="currentColor" stroke-dasharray="2 4" class="timeline-grid" opacity=".25"><line x1="20" x2="20" y1="24" y2="76"></line><line x1="50" x2="50" y1="24" y2="76"></line><line x1="80" x2="80" y1="24" y2="76"></line><line x1="110" x2="110" y1="24" y2="76"></line><line x1="140" x2="140" y1="24" y2="76"></line><line x1="16" x2="144" y1="50" y2="50" stroke-dasharray="none" opacity=".4"></line></g><g class="curve-stream upper"><path stroke="currentColor" stroke-dasharray="3 3" d="M16 42c24-10 44 10 68 0s44 8 60-2" opacity=".4"></path></g><g class="curve-stream primary"><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.75" d="M16 50c24-12 44 12 68 0s44 10 60-2"></path></g><g class="curve-stream lower"><path stroke="currentColor" stroke-dasharray="3 3" d="M16 58c24-12 44 12 68 0s44 10 60-2" opacity=".4"></path></g><circle cx="84" cy="50" r="3" fill="var(--pulsar-accent, currentColor)" class="forecast-dot"></circle></svg>
animation.css
.pulsar-treasury-forecast {
display: block;
width: 100%;
height: 100%;
}
.pulsar-treasury-forecast .curve-stream.primary {
animation: treasury-forecast-wave 4s ease-in-out infinite;
}
.pulsar-treasury-forecast .curve-stream.upper {
animation: treasury-forecast-drift-up 4s ease-in-out infinite;
}
.pulsar-treasury-forecast .curve-stream.lower {
animation: treasury-forecast-drift-down 4s ease-in-out infinite;
}
.pulsar-treasury-forecast .forecast-dot {
transform-origin: 84px 50px;
animation: treasury-forecast-pulse 4s ease-in-out infinite;
}
@keyframes treasury-forecast-wave {
0%,
100% {
transform: translateY(0);
opacity: 0.7;
}
50% {
transform: translateY(-4px);
opacity: 1;
}
}
@keyframes treasury-forecast-drift-up {
0%,
100% {
transform: translateY(0);
opacity: 0.3;
}
50% {
transform: translateY(-6px);
opacity: 0.6;
}
}
@keyframes treasury-forecast-drift-down {
0%,
100% {
transform: translateY(0);
opacity: 0.3;
}
50% {
transform: translateY(3px);
opacity: 0.5;
}
}
@keyframes treasury-forecast-pulse {
0%,
100% {
transform: translateY(0) scale(0.9);
opacity: 0.6;
}
50% {
transform: translateY(-4px) scale(1.3);
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-treasury-forecast .curve-stream.primary,
.pulsar-treasury-forecast .curve-stream.upper,
.pulsar-treasury-forecast .curve-stream.lower,
.pulsar-treasury-forecast .forecast-dot {
animation: none;
transform: none;
opacity: 0.7;
}
}