Area
CSSAn interior usable space boundary pulses as offset drafting dimensions calculate net rentable area.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Determinate progress, Dashboards and reporting
- Industries
- Real estate and property, Cross-industry
- Style
- Technical · light stroke
- Set
- floorplate
- Tags
- geometricscalelooppulse
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-area" data-pulsar="floorplate-area" viewBox="0 0 160 96"><rect width="100" height="56" x="30" y="20" stroke="currentColor" stroke-width="1.2" class="gross-boundary" opacity=".3" rx="2"></rect><rect width="76" height="40" x="42" y="28" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="usable-area" rx="1"></rect><line x1="42" x2="30" y1="28" y2="20" stroke="currentColor" stroke-width=".8" class="diag d1" opacity=".4"></line><line x1="118" x2="130" y1="28" y2="20" stroke="currentColor" stroke-width=".8" class="diag d2" opacity=".4"></line><line x1="42" x2="30" y1="68" y2="76" stroke="currentColor" stroke-width=".8" class="diag d3" opacity=".4"></line><line x1="118" x2="130" y1="68" y2="76" stroke="currentColor" stroke-width=".8" class="diag d4" opacity=".4"></line></svg>
animation.css
.pulsar-floorplate-area {
display: block;
width: 100%;
height: 100%;
}
.pulsar-floorplate-area .usable-area {
animation: floorplate-area-pulse 4s ease-in-out infinite;
}
.pulsar-floorplate-area .diag {
animation: floorplate-area-diag 4s ease-in-out infinite;
}
@keyframes floorplate-area-pulse {
0%,
100% {
transform: scale(0.92);
transform-origin: 80px 48px;
opacity: 0.5;
}
50% {
transform: scale(1.04);
transform-origin: 80px 48px;
opacity: 1;
}
}
@keyframes floorplate-area-diag {
0%,
100% {
opacity: 0.2;
}
50% {
opacity: 0.8;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-floorplate-area .usable-area,
.pulsar-floorplate-area .diag {
animation: none;
transform: none;
opacity: 1;
}
}