Well Plate
CSSA 12-well laboratory format plate registers sequential optical detection scans across coordinate rows.
- 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
- gridminimallooppulse
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-well-plate" data-pulsar="assay-well-plate" viewBox="0 0 160 96"><rect width="96" height="56" x="32" y="20" stroke="currentColor" stroke-width="1.2" class="plate-border" opacity=".25" rx="3"></rect><g stroke="currentColor" class="wells"><rect width="16" height="10" x="42" y="28" class="wl l1" rx="1.5"></rect><rect width="16" height="10" x="64" y="28" class="wl l2" rx="1.5"></rect><rect width="16" height="10" x="86" y="28" class="wl l3" rx="1.5"></rect><rect width="16" height="10" x="108" y="28" class="wl l4" rx="1.5"></rect><rect width="16" height="10" x="42" y="43" class="wl l5" rx="1.5"></rect><rect width="16" height="10" x="64" y="43" class="wl l6" rx="1.5"></rect><rect width="16" height="10" x="86" y="43" class="wl l7" rx="1.5"></rect><rect width="16" height="10" x="108" y="43" class="wl l8" rx="1.5"></rect><rect width="16" height="10" x="42" y="58" class="wl l9" rx="1.5"></rect><rect width="16" height="10" x="64" y="58" class="wl l10" rx="1.5"></rect><rect width="16" height="10" x="86" y="58" class="wl l11" rx="1.5"></rect><rect width="16" height="10" x="108" y="58" class="wl l12" rx="1.5"></rect></g></svg>
animation.css
.pulsar-assay-well-plate {
display: block;
width: 100%;
height: 100%;
}
.pulsar-assay-well-plate .wl {
opacity: 0.25;
}
.pulsar-assay-well-plate .wl.l1,
.pulsar-assay-well-plate .wl.l6,
.pulsar-assay-well-plate .wl.l11 {
animation: assay-well-plate-read 4s ease-in-out infinite;
}
.pulsar-assay-well-plate .wl.l2,
.pulsar-assay-well-plate .wl.l7,
.pulsar-assay-well-plate .wl.l12 {
animation: assay-well-plate-read 4s ease-in-out infinite -3s;
}
.pulsar-assay-well-plate .wl.l3,
.pulsar-assay-well-plate .wl.l8,
.pulsar-assay-well-plate .wl.l9 {
animation: assay-well-plate-read 4s ease-in-out infinite -2s;
}
.pulsar-assay-well-plate .wl.l4,
.pulsar-assay-well-plate .wl.l5,
.pulsar-assay-well-plate .wl.l10 {
animation: assay-well-plate-read 4s ease-in-out infinite -1s;
}
@keyframes assay-well-plate-read {
0%,
100% {
opacity: 0.2;
stroke: currentColor;
}
30%,
60% {
opacity: 1;
stroke: var(--pulsar-accent, currentColor);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-assay-well-plate .wl.l1,
.pulsar-assay-well-plate .wl.l6,
.pulsar-assay-well-plate .wl.l11,
.pulsar-assay-well-plate .wl.l2,
.pulsar-assay-well-plate .wl.l7,
.pulsar-assay-well-plate .wl.l12,
.pulsar-assay-well-plate .wl.l3,
.pulsar-assay-well-plate .wl.l8,
.pulsar-assay-well-plate .wl.l9,
.pulsar-assay-well-plate .wl.l4,
.pulsar-assay-well-plate .wl.l5,
.pulsar-assay-well-plate .wl.l10 {
animation: none;
opacity: 0.8;
}
}