Zoning
CSSAn architectural zoning perimeter defines designated tenant boundaries with an orthogonal matrix stipple.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Dashboards and reporting, Workflow and approvals
- Industries
- Real estate and property, Cross-industry
- Style
- Technical · light stroke
- Set
- floorplate
- Tags
- griddotsminimalloop
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-zoning" data-pulsar="floorplate-zoning" viewBox="0 0 160 96"><path stroke="currentColor" stroke-linejoin="round" stroke-width="1.4" d="M32 24h76l20 20v28H32Z" class="zone-outline" opacity=".35"></path><g fill="var(--pulsar-accent, currentColor)" class="zone-stipple"><circle cx="48" cy="36" r="1.5" class="st st1"></circle><circle cx="68" cy="36" r="1.5" class="st st2"></circle><circle cx="88" cy="36" r="1.5" class="st st3"></circle><circle cx="48" cy="48" r="1.5" class="st st4"></circle><circle cx="68" cy="48" r="1.5" class="st st5"></circle><circle cx="88" cy="48" r="1.5" class="st st6"></circle><circle cx="108" cy="48" r="1.5" class="st st7"></circle><circle cx="48" cy="60" r="1.5" class="st st8"></circle><circle cx="68" cy="60" r="1.5" class="st st9"></circle><circle cx="88" cy="60" r="1.5" class="st st10"></circle><circle cx="108" cy="60" r="1.5" class="st st11"></circle></g><path stroke="var(--pulsar-accent, currentColor)" stroke-width="1.8" d="m108 24 20 20" class="highlight-corner"></path></svg>
animation.css
.pulsar-floorplate-zoning {
display: block;
width: 100%;
height: 100%;
}
.pulsar-floorplate-zoning .zone-stipple .st {
animation: floorplate-zoning-dots 4s ease-in-out infinite;
}
.pulsar-floorplate-zoning .highlight-corner {
animation: floorplate-zoning-edge 4s ease-in-out infinite;
}
@keyframes floorplate-zoning-dots {
0%,
100% {
opacity: 0.2;
transform: scale(0.8);
transform-origin: center;
}
50% {
opacity: 1;
transform: scale(1.3);
transform-origin: center;
}
}
@keyframes floorplate-zoning-edge {
0%,
100% {
opacity: 0.3;
}
50% {
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-floorplate-zoning .zone-stipple .st,
.pulsar-floorplate-zoning .highlight-corner {
animation: none;
transform: none;
opacity: 1;
}
}