Electrophoresis
CSSDashed molecular weight bands migrate vertically down five gel columns at differential molecular velocities.
- 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-electrophoresis" data-pulsar="assay-electrophoresis" viewBox="0 0 160 96"><g stroke="currentColor" stroke-width=".8" class="gel-lanes" opacity=".2"><line x1="36" x2="36" y1="16" y2="80"></line><line x1="58" x2="58" y1="16" y2="80"></line><line x1="80" x2="80" y1="16" y2="80"></line><line x1="102" x2="102" y1="16" y2="80"></line><line x1="124" x2="124" y1="16" y2="80"></line></g><line x1="28" x2="44" y1="26" y2="26" stroke="currentColor" stroke-linecap="round" stroke-width="2.5" class="band b1"></line><line x1="50" x2="66" y1="34" y2="34" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2.5" class="band b2"></line><line x1="72" x2="88" y1="22" y2="22" stroke="currentColor" stroke-linecap="round" stroke-width="2.5" class="band b3"></line><line x1="94" x2="110" y1="40" y2="40" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2.5" class="band b4"></line><line x1="116" x2="132" y1="30" y2="30" stroke="currentColor" stroke-linecap="round" stroke-width="2.5" class="band b5"></line></svg>
animation.css
.pulsar-assay-electrophoresis {
display: block;
width: 100%;
height: 100%;
}
.pulsar-assay-electrophoresis .band.b1 {
animation: assay-electrophoresis-mig 4s ease-in-out infinite;
}
.pulsar-assay-electrophoresis .band.b2 {
animation: assay-electrophoresis-mig 4s ease-in-out infinite -2.8s;
}
.pulsar-assay-electrophoresis .band.b3 {
animation: assay-electrophoresis-mig 4s ease-in-out infinite -1.4s;
}
.pulsar-assay-electrophoresis .band.b4 {
animation: assay-electrophoresis-mig 4s ease-in-out infinite -3.2s;
}
.pulsar-assay-electrophoresis .band.b5 {
animation: assay-electrophoresis-mig 4s ease-in-out infinite -0.6s;
}
@keyframes assay-electrophoresis-mig {
0%,
100% {
transform: translateY(0);
opacity: 0.3;
}
50% {
transform: translateY(28px);
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-assay-electrophoresis .band.b1,
.pulsar-assay-electrophoresis .band.b2,
.pulsar-assay-electrophoresis .band.b3,
.pulsar-assay-electrophoresis .band.b4,
.pulsar-assay-electrophoresis .band.b5 {
animation: none;
transform: translateY(14px);
opacity: 0.8;
}
}