Velocity Ripple
CSSTiny dot indicators accelerate along predefined grid tracks, creating subtle circular ripples when they come to a halt.
- 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
- dotscirclepulseambient
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-velocity" data-pulsar="treasury-velocity" viewBox="0 0 160 96"><g stroke="currentColor" stroke-dasharray="2 4" class="tracks" opacity=".25"><line x1="20" x2="140" y1="32" y2="32"></line><line x1="20" x2="140" y1="48" y2="48"></line><line x1="20" x2="140" y1="64" y2="64"></line></g><g class="track-1"><line x1="24" x2="60" y1="32" y2="32" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5" class="laser-track"></line><circle cx="108" cy="32" r="2.5" fill="var(--pulsar-accent, currentColor)" class="halt-dot"></circle><circle cx="108" cy="32" r="6" stroke="var(--pulsar-accent, currentColor)" class="ripple r-t1"></circle></g><g class="track-2"><line x1="136" x2="100" y1="64" y2="64" stroke="currentColor" stroke-linecap="round" stroke-width="1.5" class="laser-track" opacity=".6"></line><circle cx="52" cy="64" r="2.5" fill="currentColor" class="halt-dot"></circle><circle cx="52" cy="64" r="6" stroke="currentColor" class="ripple r-t2"></circle></g><g class="track-center"><circle cx="80" cy="48" r="3" stroke="currentColor" stroke-width="1.2" opacity=".4"></circle></g></svg>
animation.css
.pulsar-treasury-velocity {
display: block;
width: 100%;
height: 100%;
}
.pulsar-treasury-velocity .track-1 .laser-track {
animation: treasury-velocity-glide-right 4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}
.pulsar-treasury-velocity .track-1 .ripple.r-t1 {
transform-origin: 108px 32px;
animation: treasury-velocity-ripple 4s ease-out infinite;
}
.pulsar-treasury-velocity .track-2 .laser-track {
animation: treasury-velocity-glide-left 4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite -2s;
}
.pulsar-treasury-velocity .track-2 .ripple.r-t2 {
transform-origin: 52px 64px;
animation: treasury-velocity-ripple 4s ease-out infinite -2s;
}
.pulsar-treasury-velocity .track-1 .halt-dot {
animation: treasury-velocity-dot-pulse 4s ease-in-out infinite;
}
.pulsar-treasury-velocity .track-2 .halt-dot {
animation: treasury-velocity-dot-pulse 4s ease-in-out infinite -2s;
}
@keyframes treasury-velocity-glide-right {
0% {
transform: translateX(0);
opacity: 0;
}
30% {
opacity: 1;
}
70%,
100% {
transform: translateX(48px);
opacity: 0;
}
}
@keyframes treasury-velocity-glide-left {
0% {
transform: translateX(0);
opacity: 0;
}
30% {
opacity: 0.9;
}
70%,
100% {
transform: translateX(-48px);
opacity: 0;
}
}
@keyframes treasury-velocity-ripple {
0%,
50% {
transform: scale(0.3);
opacity: 0;
}
65% {
transform: scale(1);
opacity: 0.8;
}
100% {
transform: scale(2.2);
opacity: 0;
}
}
@keyframes treasury-velocity-dot-pulse {
0%,
50% {
opacity: 0.3;
}
65% {
opacity: 1;
}
100% {
opacity: 0.3;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-treasury-velocity .track-1 .laser-track,
.pulsar-treasury-velocity .track-1 .ripple.r-t1,
.pulsar-treasury-velocity .track-2 .laser-track,
.pulsar-treasury-velocity .track-2 .ripple.r-t2,
.pulsar-treasury-velocity .track-1 .halt-dot,
.pulsar-treasury-velocity .track-2 .halt-dot {
animation: none;
transform: none;
opacity: 0.5;
}
}