State Handoff
CSSAn architectural module block slides across a project boundary line into the owner zone.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Transitions and reveals
- Use cases
- Security and trust, Transitions and reveals
- Industries
- Construction and built environment, Cross-industry
- Style
- Duotone · light stroke
- Set
- handover
- Tags
- geometricwipeprogressloop
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-handover-transfer" data-pulsar="handover-transfer" viewBox="0 0 160 96"><line x1="28" x2="132" y1="68" y2="68" stroke="currentColor" stroke-width="1.5" class="baseline" opacity=".3"></line><line x1="80" x2="80" y1="20" y2="76" stroke="currentColor" stroke-dasharray="4 4" stroke-width="2" class="threshold" opacity=".6"></line><circle cx="80" cy="20" r="3" fill="var(--pulsar-accent, currentColor)" class="threshold-beacon"></circle><g class="building-block"><rect width="32" height="32" x="42" y="36" fill="currentColor" fill-opacity=".1" stroke="currentColor" stroke-width="2" rx="4"></rect><rect width="20" height="20" x="48" y="42" fill="var(--pulsar-accent, currentColor)" fill-opacity=".4" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="core" rx="2"></rect><circle cx="58" cy="52" r="3" fill="currentColor"></circle></g><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m112 50 6-4-6-4" class="arrow-indicator"></path></svg>
animation.css
.pulsar-handover-transfer {
display: block;
width: 100%;
height: 100%;
}
.pulsar-handover-transfer .building-block {
animation: handover-transfer-move 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-handover-transfer .core {
animation: handover-transfer-accent 4s ease-in-out infinite;
}
.pulsar-handover-transfer .arrow-indicator {
animation: handover-transfer-fade 4s ease-in-out infinite;
}
@keyframes handover-transfer-move {
0%,
15% {
transform: translateX(0);
}
50%,
75% {
transform: translateX(44px);
}
100% {
transform: translateX(0);
}
}
@keyframes handover-transfer-accent {
0%,
25% {
fill-opacity: 0.15;
}
50%,
75% {
fill-opacity: 0.8;
}
100% {
fill-opacity: 0.15;
}
}
@keyframes handover-transfer-fade {
0%,
100% {
opacity: 0.3;
transform: translateX(0);
}
50% {
opacity: 1;
transform: translateX(4px);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-handover-transfer .building-block,
.pulsar-handover-transfer .core,
.pulsar-handover-transfer .arrow-indicator {
animation: none;
transform: none;
opacity: 1;
}
}