CAD Sync
CSSTwo orthographic floor plan drafting sheets shift smoothly into registered alignment overlay.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Sync and integration, Workflow and approvals
- Industries
- Real estate and property, Construction and built environment
- Style
- Technical · light stroke
- Set
- floorplate
- Tags
- geometricminimalloopprogress
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" aria-hidden="true" class="pulsar pulsar-floorplate-cad-sync" data-pulsar="floorplate-cad-sync" viewBox="0 0 160 96"><g class="sheet-base"><rect width="72" height="48" x="44" y="24" stroke="currentColor" stroke-width="1.2" opacity=".3" rx="2"></rect><line x1="44" x2="116" y1="48" y2="48" stroke="currentColor" stroke-width=".8" opacity=".2"></line></g><g class="sheet-overlay"><rect width="72" height="48" x="44" y="24" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="4 2" stroke-width="1.4" rx="2"></rect><circle cx="80" cy="48" r="3" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-floorplate-cad-sync {
display: block;
width: 100%;
height: 100%;
}
.pulsar-floorplate-cad-sync .sheet-overlay {
animation: floorplate-cad-sync-shift 4s ease-in-out infinite;
}
@keyframes floorplate-cad-sync-shift {
0%,
100% {
transform: translate(6px, -6px);
opacity: 0.4;
}
50% {
transform: translate(0, 0);
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-floorplate-cad-sync .sheet-overlay {
animation: none;
transform: none;
opacity: 1;
}
}