Orientation
CSSA floorplate building footprint rotates softly against a stationary north meridian alignment datum.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Navigation and wayfinding, Search and filtering
- Industries
- Real estate and property, Construction and built environment
- Style
- Technical · light stroke
- Set
- floorplate
- Tags
- geometricrotateloopline
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-orientation" data-pulsar="floorplate-orientation" viewBox="0 0 160 96"><line x1="80" x2="80" y1="12" y2="84" stroke="currentColor" stroke-dasharray="3 3" class="meridian" opacity=".3"></line><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.4" d="m76 20 4-6 4 6" class="north-mark"></path><g class="footprint"><rect width="56" height="36" x="52" y="30" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.4" rx="2"></rect><line x1="52" x2="108" y1="48" y2="48" stroke="currentColor" stroke-width=".8" opacity=".4"></line></g></svg>
animation.css
.pulsar-floorplate-orientation {
display: block;
width: 100%;
height: 100%;
}
.pulsar-floorplate-orientation .footprint {
animation: floorplate-orientation-align 4s ease-in-out infinite;
transform-origin: 80px 48px;
}
.pulsar-floorplate-orientation .north-mark {
animation: floorplate-orientation-north 4s ease-in-out infinite;
}
@keyframes floorplate-orientation-align {
0%,
100% {
transform: rotate(0deg);
}
50% {
transform: rotate(24deg);
}
}
@keyframes floorplate-orientation-north {
0%,
100% {
opacity: 0.4;
}
50% {
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-floorplate-orientation .footprint,
.pulsar-floorplate-orientation .north-mark {
animation: none;
transform: none;
opacity: 1;
}
}