Yield Ratio
CSSA production batch bar splits into high-percentage usable yield material moving forward while scrap trim is separated.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Decorative and illustrative
- Use cases
- Determinate progress, Dashboards and reporting
- Industries
- Manufacturing and industrial, Cross-industry
- Style
- Duotone · regular stroke
- Set
- bom
- Tags
- barsprogressgeometric
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-yield-ratio" data-pulsar="bom-yield-ratio" viewBox="0 0 160 96"><line x1="24" x2="136" y1="48" y2="48" stroke-dasharray="2 3" opacity=".25"></line><rect width="76" height="20" x="32" y="38" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="yield-bar" rx="3"></rect><rect width="16" height="20" x="112" y="38" fill="currentColor" fill-opacity=".08" stroke-width="1.5" class="scrap-bar" rx="3"></rect><line x1="110" x2="110" y1="30" y2="66" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="cut-laser"></line></svg>
animation.css
.pulsar-bom-yield-ratio {
display: block;
overflow: visible;
}
.pulsar-bom-yield-ratio .cut-laser {
animation: bom-yield-ratio-laser 4000ms ease-in-out infinite;
}
.pulsar-bom-yield-ratio .yield-bar {
animation: bom-yield-ratio-yield 4000ms ease-in-out infinite;
}
.pulsar-bom-yield-ratio .scrap-bar {
animation: bom-yield-ratio-scrap 4000ms ease-in-out infinite;
}
@keyframes bom-yield-ratio-laser {
0%,
15% {
opacity: 0;
transform: scaleY(0.4);
}
25%,
45% {
opacity: 1;
transform: scaleY(1);
}
55%,
100% {
opacity: 0;
transform: scaleY(0.4);
}
}
@keyframes bom-yield-ratio-yield {
0%,
35% {
transform: translateY(0);
opacity: 0.7;
}
50%,
80% {
transform: translateY(-8px);
opacity: 1;
}
95%,
100% {
transform: translateY(0);
opacity: 0.7;
}
}
@keyframes bom-yield-ratio-scrap {
0%,
35% {
transform: translateY(0);
opacity: 0.5;
}
50%,
80% {
transform: translateY(8px);
opacity: 0.2;
}
95%,
100% {
transform: translateY(0);
opacity: 0.5;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-bom-yield-ratio .cut-laser,
.pulsar-bom-yield-ratio .yield-bar,
.pulsar-bom-yield-ratio .scrap-bar {
animation: none;
transform: none;
opacity: 1;
}
}