Manifest Lock
CSSAn abstract security status rail locks into a verified state with a retaining detent pin and illuminated lock beacon.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Security and trust, Compliance and audit
- Industries
- Logistics and supply chain, Cross-industry
- Style
- Data mark · light stroke
- Set
- manifest
- Tags
- barsminimalloop
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" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" class="pulsar pulsar-manifest-lock" data-pulsar="manifest-lock" viewBox="0 0 160 96"><line x1="36" x2="124" y1="48" y2="48" stroke-width="2" opacity=".3"></line><rect width="16" height="20" x="112" y="38" stroke-width="1.5" opacity=".4" rx="3"></rect><rect width="22" height="16" x="42" y="40" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="shuttle" rx="2"></rect><line x1="120" x2="120" y1="28" y2="38" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="detent-pin"></line><circle cx="120" cy="48" r="3" fill="var(--pulsar-accent, currentColor)" class="lock-beacon"></circle></svg>
animation.css
.pulsar-manifest-lock {
display: block;
overflow: visible;
}
.pulsar-manifest-lock .shuttle {
animation: manifest-lock-shuttle 4000ms ease-in-out infinite;
}
.pulsar-manifest-lock .detent-pin {
animation: manifest-lock-pin 4000ms ease-in-out infinite;
}
.pulsar-manifest-lock .lock-beacon {
animation: manifest-lock-beacon 4000ms ease-in-out infinite;
}
@keyframes manifest-lock-shuttle {
0%,
15% {
transform: translateX(0);
opacity: 0.6;
}
45%,
85% {
transform: translateX(67px);
opacity: 1;
}
95%,
100% {
transform: translateX(0);
opacity: 0.6;
}
}
@keyframes manifest-lock-pin {
0%,
40% {
transform: translateY(-8px);
opacity: 0.2;
}
50%,
85% {
transform: translateY(0);
opacity: 1;
}
95%,
100% {
transform: translateY(-8px);
opacity: 0.2;
}
}
@keyframes manifest-lock-beacon {
0%,
48% {
opacity: 0;
transform: scale(0.5);
}
55%,
85% {
opacity: 1;
transform: scale(1.2);
}
95%,
100% {
opacity: 0;
transform: scale(0.5);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-manifest-lock .shuttle,
.pulsar-manifest-lock .detent-pin,
.pulsar-manifest-lock .lock-beacon {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}