Lock
CSSA padlock closes around a vacant seat contour, representing a locked user slot awaiting activation.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Security and trust, Compliance and audit
- Industries
- SaaS and software, Cross-industry
- Style
- Duotone · light stroke
- Set
- seat
- Tags
- geometricminimalpulseuistroke
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-seat-lock" data-pulsar="seat-lock" viewBox="0 0 160 96"><rect width="56" height="60" x="52" y="18" stroke="currentColor" stroke-dasharray="3 3" stroke-width="1.25" opacity=".3" rx="8"></rect><g class="seat-lock-body"><rect width="28" height="22" x="66" y="44" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" rx="4"></rect><circle cx="80" cy="53" r="2" fill="var(--pulsar-accent, currentColor)"></circle><line x1="80" x2="80" y1="55" y2="59" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.25"></line></g><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5" d="M72 44v-8c0-5 16-5 16 0v8" class="seat-lock-shackle"></path></svg>
animation.css
.pulsar-seat-lock {
display: block;
overflow: visible;
}
.pulsar-seat-lock .seat-lock-shackle {
animation: seat-lock-shackle-anim 4000ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-seat-lock .seat-lock-body {
animation: seat-lock-body-anim 4000ms ease infinite;
}
@keyframes seat-lock-shackle-anim {
0%,
20% {
transform: translateY(-6px);
}
45%,
80% {
transform: translateY(0);
}
92%,
100% {
transform: translateY(-6px);
}
}
@keyframes seat-lock-body-anim {
0%,
20% {
opacity: 0.6;
}
45%,
80% {
opacity: 1;
}
92%,
100% {
opacity: 0.6;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-seat-lock .seat-lock-shackle,
.pulsar-seat-lock .seat-lock-body {
animation: none;
}
}