Access Release
CSSA heavy padlock shackle slides upward to the unlocked position while the lock body eases gently.
- 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
- linerotateloop
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-lock" data-pulsar="handover-lock" viewBox="0 0 160 96"><g class="lock-assembly"><path stroke="currentColor" stroke-linecap="round" stroke-width="3" d="M68 46V32c0-6.627 5.373-12 12-12s12 5.373 12 12v14" class="shackle"></path><rect width="44" height="34" x="58" y="44" fill="currentColor" fill-opacity=".1" stroke="currentColor" stroke-width="2" class="lock-body" rx="6"></rect><circle cx="80" cy="57" r="4" fill="var(--pulsar-accent, currentColor)" class="keyhole-top"></circle><path fill="var(--pulsar-accent, currentColor)" d="m78 59-1 8h6l-1-8Z" class="keyhole-stem"></path><circle cx="95" cy="24" r="2" fill="var(--pulsar-accent, currentColor)" class="sparkle"></circle></g></svg>
animation.css
.pulsar-handover-lock {
display: block;
width: 100%;
height: 100%;
}
.pulsar-handover-lock .lock-assembly {
transform-origin: 80px 60px;
animation: handover-lock-tilt 4s ease-in-out infinite;
}
.pulsar-handover-lock .shackle {
animation: handover-lock-open 4s ease-in-out infinite;
}
.pulsar-handover-lock .sparkle {
animation: handover-lock-glow 4s ease-in-out infinite;
}
@keyframes handover-lock-tilt {
0%,
100% {
transform: rotate(0deg);
}
30%,
70% {
transform: rotate(-3deg);
}
}
@keyframes handover-lock-open {
0%,
15%,
85%,
100% {
transform: translateY(0);
}
35%,
65% {
transform: translateY(-8px);
}
}
@keyframes handover-lock-glow {
0%,
25%,
75%,
100% {
opacity: 0;
transform: scale(0.5);
}
40%,
60% {
opacity: 1;
transform: scale(1.2);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-handover-lock .lock-assembly,
.pulsar-handover-lock .shackle,
.pulsar-handover-lock .sparkle {
animation: none;
transform: none;
opacity: 1;
}
}