Part Registry
CSSA technical index page scrolls upward, with a single row expanding to reveal detailed parameter bars of a component.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Decorative and illustrative
- Use cases
- Search and filtering, Documents and files
- Industries
- Manufacturing and industrial, Cross-industry
- Style
- Duotone · regular stroke
- Set
- bom
- Tags
- linebarsminimal
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" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" class="pulsar pulsar-bom-part-registry" data-pulsar="bom-part-registry" viewBox="0 0 160 96"><rect width="72" height="56" x="44" y="20" stroke-width="1.5" opacity=".35" rx="4"></rect><line x1="44" x2="116" y1="32" y2="32" opacity=".25"></line><line x1="52" x2="68" y1="26" y2="26" stroke-width="1.5" opacity=".5"></line><rect width="60" height="7" x="50" y="36" class="row r1" opacity=".3" rx="1.5"></rect><g class="row r2-group"><rect width="60" height="18" x="50" y="46" fill="var(--pulsar-accent, currentColor)" fill-opacity=".1" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="drawer" rx="2"></rect><line x1="56" x2="76" y1="52" y2="52" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" opacity=".8"></line><line x1="56" x2="94" y1="58" y2="58" stroke="var(--pulsar-accent, currentColor)" opacity=".6"></line></g><rect width="60" height="7" x="50" y="67" class="row r3" opacity=".3" rx="1.5"></rect></svg>
animation.css
.pulsar-bom-part-registry {
display: block;
overflow: visible;
}
.pulsar-bom-part-registry .row.r2-group {
animation: bom-part-registry-drawer 4000ms ease-in-out infinite;
}
.pulsar-bom-part-registry .row.r3 {
animation: bom-part-registry-r3 4000ms ease-in-out infinite;
}
.pulsar-bom-part-registry .row.r1 {
animation: bom-part-registry-r1 4000ms ease-in-out infinite;
}
@keyframes bom-part-registry-drawer {
0%,
20% {
transform: scaleY(0.5);
opacity: 0.4;
}
40%,
80% {
transform: scaleY(1);
opacity: 1;
}
100% {
transform: scaleY(0.5);
opacity: 0.4;
}
}
@keyframes bom-part-registry-r3 {
0%,
20% {
transform: translateY(-7px);
}
40%,
80% {
transform: translateY(0);
}
100% {
transform: translateY(-7px);
}
}
@keyframes bom-part-registry-r1 {
0%,
100% {
opacity: 0.3;
}
50% {
opacity: 0.5;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-bom-part-registry .row.r2-group,
.pulsar-bom-part-registry .row.r3,
.pulsar-bom-part-registry .row.r1 {
animation: none;
transform: none;
opacity: 1;
}
}