Inventory Reconciliation
CSSTwo overlapping drafting grid frames shift relative to each other until their coordinate rules align in perfect registration.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Success and confirmation, Sync and integration
- Industries
- Logistics and supply chain, Cross-industry
- Style
- Technical · light stroke
- Set
- yard
- Tags
- gridgeometricminimal
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-yard-reconciliation" data-pulsar="yard-reconciliation" viewBox="0 0 160 96"><rect width="72" height="48" x="44" y="24" stroke-width="1.5" class="grid-fixed" opacity=".3" rx="2"></rect><rect width="72" height="48" x="44" y="24" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="grid-moving" rx="2"></rect><line x1="44" x2="116" y1="48" y2="48" stroke-dasharray="2 2" opacity=".3"></line><line x1="80" x2="80" y1="24" y2="72" stroke-dasharray="2 2" opacity=".3"></line><circle cx="80" cy="48" r="4" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="center-reg"></circle></svg>
animation.css
.pulsar-yard-reconciliation {
display: block;
overflow: visible;
}
.pulsar-yard-reconciliation .grid-moving {
animation: yard-reconciliation-move 4000ms ease-in-out infinite;
}
.pulsar-yard-reconciliation .center-reg {
animation: yard-reconciliation-reg 4000ms ease-in-out infinite;
}
@keyframes yard-reconciliation-move {
0%,
15% {
transform: translate(-6px, -4px);
opacity: 0.5;
}
45%,
80% {
transform: translate(0, 0);
opacity: 1;
}
95%,
100% {
transform: translate(-6px, -4px);
opacity: 0.5;
}
}
@keyframes yard-reconciliation-reg {
0%,
40% {
opacity: 0.2;
transform: scale(0.7);
}
50%,
80% {
opacity: 1;
transform: scale(1.2);
}
95%,
100% {
opacity: 0.2;
transform: scale(0.7);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-yard-reconciliation .grid-moving,
.pulsar-yard-reconciliation .center-reg {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}