Grid
CSSA structural column grid with circular datum coordinate bubbles aligns with intersecting structural centerlines.
- 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, Construction and built environment
- Style
- Technical · light stroke
- Set
- floorplate
- Tags
- gridcirclelineloop
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-grid" data-pulsar="floorplate-grid" viewBox="0 0 160 96"><line x1="56" x2="56" y1="26" y2="76" stroke="currentColor" stroke-dasharray="3 3" class="gl-v1" opacity=".3"></line><line x1="104" x2="104" y1="26" y2="76" stroke="currentColor" stroke-dasharray="3 3" class="gl-v2" opacity=".3"></line><line x1="36" x2="124" y1="42" y2="42" stroke="currentColor" stroke-dasharray="3 3" class="gl-h1" opacity=".3"></line><line x1="36" x2="124" y1="64" y2="64" stroke="currentColor" stroke-dasharray="3 3" class="gl-h2" opacity=".3"></line><circle cx="56" cy="20" r="5" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.2" class="bubble b1"></circle><circle cx="104" cy="20" r="5" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.2" class="bubble b2"></circle><circle cx="56" cy="42" r="3" fill="currentColor" class="col c1"></circle><circle cx="104" cy="42" r="3" fill="currentColor" class="col c2"></circle><circle cx="56" cy="64" r="3" fill="currentColor" class="col c3"></circle><circle cx="104" cy="64" r="3" fill="var(--pulsar-accent, currentColor)" class="col c4"></circle></svg>
animation.css
.pulsar-floorplate-grid {
display: block;
width: 100%;
height: 100%;
}
.pulsar-floorplate-grid .bubble.b1 {
animation: floorplate-grid-bubble 4s ease-in-out infinite;
}
.pulsar-floorplate-grid .bubble.b2 {
animation: floorplate-grid-bubble 4s ease-in-out infinite -2s;
}
.pulsar-floorplate-grid .col.c4 {
animation: floorplate-grid-col 4s ease-in-out infinite;
}
@keyframes floorplate-grid-bubble {
0%,
100% {
transform: scale(0.9);
transform-origin: center;
opacity: 0.4;
}
50% {
transform: scale(1.2);
transform-origin: center;
opacity: 1;
}
}
@keyframes floorplate-grid-col {
0%,
100% {
transform: scale(0.8);
transform-origin: 104px 64px;
opacity: 0.4;
}
50% {
transform: scale(1.3);
transform-origin: 104px 64px;
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-floorplate-grid .bubble.b1,
.pulsar-floorplate-grid .bubble.b2,
.pulsar-floorplate-grid .col.c4 {
animation: none;
transform: none;
opacity: 1;
}
}