Scrap Reclaim
CSSA fragmented geometric shape is drawn into a reclamation loop, where it is reconstituted into a solid, perfect square block.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Decorative and illustrative
- Use cases
- Determinate progress, Workflow and approvals
- Industries
- Manufacturing and industrial, Cross-industry
- Style
- Duotone · regular stroke
- Set
- bom
- Tags
- geometricloopprogress
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-scrap-reclaim" data-pulsar="bom-scrap-reclaim" viewBox="0 0 160 96"><path stroke-dasharray="3 3" stroke-width="1.5" d="M50 48a22 22 0 1 1 22 22" opacity=".35"></path><path fill="currentColor" d="M72 65v10l-10-5Z" opacity=".4"></path><g class="fragments"><path stroke="var(--pulsar-accent, currentColor)" stroke-width="1.2" d="m26 44 6-6-2 10Z" class="frag f1" opacity=".6"></path><path stroke="var(--pulsar-accent, currentColor)" stroke-width="1.2" d="m34 54 6-4-2 8Z" class="frag f2" opacity=".6"></path></g><rect width="20" height="20" x="108" y="38" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="reclaimed-block" rx="3"></rect><line x1="74" x2="104" y1="48" y2="48" stroke-dasharray="2 3" stroke-width="1.5" opacity=".3"></line></svg>
animation.css
.pulsar-bom-scrap-reclaim {
display: block;
overflow: visible;
}
.pulsar-bom-scrap-reclaim .frag.f1 {
animation: bom-scrap-reclaim-f1 4000ms ease-in-out infinite;
}
.pulsar-bom-scrap-reclaim .frag.f2 {
animation: bom-scrap-reclaim-f2 4000ms ease-in-out infinite;
}
.pulsar-bom-scrap-reclaim .reclaimed-block {
animation: bom-scrap-reclaim-block 4000ms ease-in-out infinite;
}
@keyframes bom-scrap-reclaim-f1 {
0% {
transform: translate(0, 0) rotate(0deg);
opacity: 0.8;
}
45% {
transform: translate(36px, 6px) rotate(90deg);
opacity: 0.2;
}
55%,
100% {
transform: translate(36px, 6px);
opacity: 0;
}
}
@keyframes bom-scrap-reclaim-f2 {
0% {
transform: translate(0, 0) rotate(0deg);
opacity: 0.8;
}
45% {
transform: translate(28px, -8px) rotate(-90deg);
opacity: 0.2;
}
55%,
100% {
transform: translate(28px, -8px);
opacity: 0;
}
}
@keyframes bom-scrap-reclaim-block {
0%,
45% {
transform: scale(0.6);
opacity: 0;
}
65%,
85% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(1);
opacity: 0.4;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-bom-scrap-reclaim .frag.f1,
.pulsar-bom-scrap-reclaim .frag.f2,
.pulsar-bom-scrap-reclaim .reclaimed-block {
animation: none;
transform: none;
opacity: 1;
}
}