Dimension
CSSA running dimension chain with witness extension lines and measurement ticks expands across structural bays.
- 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, Construction and built environment
- Style
- Technical · light stroke
- Set
- floorplate
- Tags
- barslineminimalloop
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-dimension" data-pulsar="floorplate-dimension" viewBox="0 0 160 96"><g stroke="currentColor" stroke-width=".8" class="witness-lines" opacity=".3"><line x1="30" x2="30" y1="36" y2="60"></line><line x1="64" x2="64" y1="36" y2="60"></line><line x1="98" x2="98" y1="36" y2="60"></line><line x1="130" x2="130" y1="36" y2="60"></line></g><line x1="30" x2="130" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.2" class="chain-line"></line><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.4" d="m27 51 6-6m28 6 6-6m28 6 6-6m26 6 6-6" class="ticks"></path><line x1="64" x2="98" y1="48" y2="48" stroke="currentColor" stroke-linecap="round" stroke-width="2" class="bay-highlight"></line></svg>
animation.css
.pulsar-floorplate-dimension {
display: block;
width: 100%;
height: 100%;
}
.pulsar-floorplate-dimension .chain-line {
stroke-dasharray: 100;
animation: floorplate-dimension-chain 4s ease-in-out infinite;
}
.pulsar-floorplate-dimension .ticks {
animation: floorplate-dimension-ticks 4s ease-in-out infinite;
}
.pulsar-floorplate-dimension .bay-highlight {
animation: floorplate-dimension-bay 4s ease-in-out infinite;
}
@keyframes floorplate-dimension-chain {
0% {
stroke-dashoffset: 100;
opacity: 0.2;
}
40%,
80% {
stroke-dashoffset: 0;
opacity: 1;
}
100% {
stroke-dashoffset: 0;
opacity: 0.4;
}
}
@keyframes floorplate-dimension-ticks {
0%,
100% {
opacity: 0.3;
transform: scale(0.9);
transform-origin: center;
}
50% {
opacity: 1;
transform: scale(1.15);
transform-origin: center;
}
}
@keyframes floorplate-dimension-bay {
0%,
100% {
opacity: 0.2;
}
50% {
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-floorplate-dimension .chain-line,
.pulsar-floorplate-dimension .ticks,
.pulsar-floorplate-dimension .bay-highlight {
animation: none;
stroke-dashoffset: 0;
opacity: 1;
}
}