Chromatography
CSSA technical separation column reveals advancing retention fronts migrating upwards past calibration indices.
- 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
- barsminimalloopprogress
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-chromatography" data-pulsar="assay-chromatography" viewBox="0 0 160 96"><rect width="28" height="64" x="66" y="16" stroke="currentColor" stroke-width="1.2" class="column-tube" opacity=".3" rx="2"></rect><g stroke="currentColor" stroke-width=".8" class="calibrations" opacity=".3"><line x1="60" x2="66" y1="24" y2="24"></line><line x1="60" x2="66" y1="36" y2="36"></line><line x1="60" x2="66" y1="48" y2="48"></line><line x1="60" x2="66" y1="60" y2="60"></line><line x1="60" x2="66" y1="72" y2="72"></line></g><rect width="24" height="6" x="68" y="58" fill="var(--pulsar-accent, currentColor)" class="front f1" rx="1"></rect><rect width="24" height="4" x="68" y="44" stroke="var(--pulsar-accent, currentColor)" class="front f2" rx="1"></rect><rect width="24" height="5" x="68" y="30" stroke="currentColor" class="front f3" opacity=".6" rx="1"></rect></svg>
animation.css
.pulsar-assay-chromatography {
display: block;
width: 100%;
height: 100%;
}
.pulsar-assay-chromatography .front.f1 {
animation: assay-chromatography-mig1 4s ease-in-out infinite;
}
.pulsar-assay-chromatography .front.f2 {
animation: assay-chromatography-mig2 4s ease-in-out infinite;
}
.pulsar-assay-chromatography .front.f3 {
animation: assay-chromatography-mig3 4s ease-in-out infinite;
}
@keyframes assay-chromatography-mig1 {
0%,
100% {
transform: translateY(0);
opacity: 0.4;
}
50% {
transform: translateY(-8px);
opacity: 0.9;
}
}
@keyframes assay-chromatography-mig2 {
0%,
100% {
transform: translateY(0);
opacity: 0.5;
}
50% {
transform: translateY(-10px);
opacity: 1;
}
}
@keyframes assay-chromatography-mig3 {
0%,
100% {
transform: translateY(0);
opacity: 0.3;
}
50% {
transform: translateY(-6px);
opacity: 0.8;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-assay-chromatography .front.f1,
.pulsar-assay-chromatography .front.f2,
.pulsar-assay-chromatography .front.f3 {
animation: none;
transform: none;
opacity: 0.8;
}
}