Asset Delivery
CSSA project asset package drops into landing position and unfurls into clean structural lines.
- 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
- geometricbounceloop
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-delivery" data-pulsar="handover-delivery" viewBox="0 0 160 96"><line x1="32" x2="128" y1="70" y2="70" stroke="currentColor" stroke-width="1.5" class="ground" opacity=".3"></line><g class="box-assembly"><rect width="36" height="28" x="62" y="42" fill="currentColor" fill-opacity=".12" stroke="currentColor" stroke-width="2" class="box-base" rx="3"></rect><path stroke="var(--pulsar-accent, currentColor)" stroke-width="2" d="M80 42v28" class="strap-v"></path><path stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="2 2" stroke-width="1.5" d="M62 56h36" class="strap-h"></path><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m62 42-14-8" class="wing-left"></path><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m98 42 14-8" class="wing-right"></path><circle cx="80" cy="56" r="3" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-handover-delivery {
display: block;
width: 100%;
height: 100%;
}
.pulsar-handover-delivery .box-assembly {
animation: handover-delivery-drop 4s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}
.pulsar-handover-delivery .wing-left {
transform-origin: 62px 42px;
animation: handover-delivery-unfurl-l 4s ease-in-out infinite;
}
.pulsar-handover-delivery .wing-right {
transform-origin: 98px 42px;
animation: handover-delivery-unfurl-r 4s ease-in-out infinite;
}
@keyframes handover-delivery-drop {
0%,
15% {
transform: translateY(-24px);
opacity: 0;
}
30%,
75% {
transform: translateY(0);
opacity: 1;
}
90%,
100% {
transform: translateY(-24px);
opacity: 0;
}
}
@keyframes handover-delivery-unfurl-l {
0%,
30% {
transform: rotate(40deg);
}
45%,
70% {
transform: rotate(0deg);
}
85%,
100% {
transform: rotate(40deg);
}
}
@keyframes handover-delivery-unfurl-r {
0%,
30% {
transform: rotate(-40deg);
}
45%,
70% {
transform: rotate(0deg);
}
85%,
100% {
transform: rotate(-40deg);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-handover-delivery .box-assembly,
.pulsar-handover-delivery .wing-left,
.pulsar-handover-delivery .wing-right {
animation: none;
transform: none;
opacity: 1;
}
}