Spectrometry
CSSCalibrated spectral peak lines oscillate along an optical wavelength axis with dynamic peak intensity modulation.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Backgrounds and ambient
- Use cases
- Ambient background
- Industries
- Healthcare and life sciences
- Style
- Technical · light stroke
- Set
- assay
- Tags
- barswaveloopminimal
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-assay-spectrometry" data-pulsar="assay-spectrometry" viewBox="0 0 160 96"><line x1="24" x2="136" y1="72" y2="72" stroke="currentColor" class="axis" opacity=".3"></line><path stroke="currentColor" stroke-width=".8" d="M28 72v3m18-3v3m18-3v3m18-3v3m18-3v3m18-3v3m14-3v3" class="ticks" opacity=".4"></path><line x1="40" x2="40" y1="72" y2="44" stroke="currentColor" stroke-linecap="round" stroke-width="1.4" class="peak p1"></line><line x1="60" x2="60" y1="72" y2="28" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.6" class="peak p2"></line><line x1="80" x2="80" y1="72" y2="52" stroke="currentColor" stroke-linecap="round" stroke-width="1.4" class="peak p3"></line><line x1="100" x2="100" y1="72" y2="34" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.6" class="peak p4"></line><line x1="120" x2="120" y1="72" y2="58" stroke="currentColor" stroke-linecap="round" stroke-width="1.4" class="peak p5"></line></svg>
animation.css
.pulsar-assay-spectrometry {
display: block;
width: 100%;
height: 100%;
}
.pulsar-assay-spectrometry .peak.p1 {
animation: assay-spectrometry-fluctuate 4s ease-in-out infinite;
}
.pulsar-assay-spectrometry .peak.p2 {
animation: assay-spectrometry-fluctuate 4s ease-in-out infinite -3s;
}
.pulsar-assay-spectrometry .peak.p3 {
animation: assay-spectrometry-fluctuate 4s ease-in-out infinite -2s;
}
.pulsar-assay-spectrometry .peak.p4 {
animation: assay-spectrometry-fluctuate 4s ease-in-out infinite -1s;
}
.pulsar-assay-spectrometry .peak.p5 {
animation: assay-spectrometry-fluctuate 4s ease-in-out infinite;
}
@keyframes assay-spectrometry-fluctuate {
0%,
100% {
transform: scaleY(0.75);
transform-origin: center 72px;
opacity: 0.5;
}
50% {
transform: scaleY(1.2);
transform-origin: center 72px;
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-assay-spectrometry .peak.p1,
.pulsar-assay-spectrometry .peak.p2,
.pulsar-assay-spectrometry .peak.p3,
.pulsar-assay-spectrometry .peak.p4,
.pulsar-assay-spectrometry .peak.p5 {
animation: none;
transform: none;
opacity: 1;
}
}