Consolidation
CSSTwo small blocks on parallel tracking lines slide toward the center and merge into a single solid block, which flashes once to confirm integration.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Determinate progress, Workflow and approvals
- Industries
- Logistics and supply chain, Cross-industry
- Style
- Data mark · light stroke
- Set
- manifest
- Tags
- geometricprogressloop
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-manifest-merge" data-pulsar="manifest-merge" viewBox="0 0 160 96"><path stroke-width="1.5" d="M24 34h36c16 0 22 14 38 14h38" opacity=".35"></path><path stroke-width="1.5" d="M24 62h36c16 0 22-14 38-14h38" opacity=".35"></path><rect width="16" height="16" x="36" y="26" fill="var(--pulsar-accent, currentColor)" fill-opacity=".15" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="in-top" rx="2"></rect><rect width="16" height="16" x="36" y="54" fill="currentColor" fill-opacity=".1" stroke-width="1.5" class="in-bottom" rx="2"></rect><rect width="22" height="20" x="96" y="38" fill="var(--pulsar-accent, currentColor)" fill-opacity=".25" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="merged-box" rx="3"></rect></svg>
animation.css
.pulsar-manifest-merge {
display: block;
overflow: visible;
}
.pulsar-manifest-merge .in-top {
animation: manifest-merge-top 4000ms ease-in-out infinite;
}
.pulsar-manifest-merge .in-bottom {
animation: manifest-merge-bottom 4000ms ease-in-out infinite;
}
.pulsar-manifest-merge .merged-box {
animation: manifest-merge-box 4000ms ease-in-out infinite;
}
@keyframes manifest-merge-top {
0% {
transform: translate(0, 0);
opacity: 1;
}
35% {
transform: translate(56px, 14px);
opacity: 0.4;
}
45%,
100% {
transform: translate(56px, 14px);
opacity: 0;
}
}
@keyframes manifest-merge-bottom {
0% {
transform: translate(0, 0);
opacity: 1;
}
35% {
transform: translate(56px, -14px);
opacity: 0.4;
}
45%,
100% {
transform: translate(56px, -14px);
opacity: 0;
}
}
@keyframes manifest-merge-box {
0%,
35% {
transform: scale(0.6);
opacity: 0;
}
45%,
75% {
transform: scale(1);
opacity: 1;
}
90%,
100% {
transform: scale(0.9);
opacity: 0.2;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-manifest-merge .in-top,
.pulsar-manifest-merge .in-bottom,
.pulsar-manifest-merge .merged-box {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}