Clamp Release
CSSOpposing precision clamp jaws slide outward to release the central certified asset node.
- 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
- geometricpulseloop
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-release" data-pulsar="handover-release" viewBox="0 0 160 96"><line x1="30" x2="130" y1="48" y2="48" stroke="currentColor" stroke-dasharray="2 4" class="axis" opacity=".3"></line><g class="center-node"><circle cx="80" cy="48" r="14" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" class="core-glow"></circle><circle cx="80" cy="48" r="8" fill="var(--pulsar-accent, currentColor)" stroke="currentColor" stroke-width="2"></circle><circle cx="80" cy="48" r="3" fill="currentColor"></circle></g><g class="jaw-left"><path fill="currentColor" fill-opacity=".1" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M50 34h18v8h-8v12h8v8H50"></path><line x1="42" x2="50" y1="48" y2="48" stroke="currentColor" stroke-width="2"></line></g><g class="jaw-right"><path fill="currentColor" fill-opacity=".1" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M110 34H92v8h8v12h-8v8h18"></path><line x1="110" x2="118" y1="48" y2="48" stroke="currentColor" stroke-width="2"></line></g></svg>
animation.css
.pulsar-handover-release {
display: block;
width: 100%;
height: 100%;
}
.pulsar-handover-release .jaw-left {
animation: handover-release-open-l 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-handover-release .jaw-right {
animation: handover-release-open-r 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-handover-release .center-node {
animation: handover-release-float 4s ease-in-out infinite;
}
@keyframes handover-release-open-l {
0%,
15%,
85%,
100% {
transform: translateX(0);
}
35%,
65% {
transform: translateX(-14px);
}
}
@keyframes handover-release-open-r {
0%,
15%,
85%,
100% {
transform: translateX(0);
}
35%,
65% {
transform: translateX(14px);
}
}
@keyframes handover-release-float {
0%,
15%,
85%,
100% {
transform: scale(0.9);
}
35%,
65% {
transform: scale(1.15);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-handover-release .jaw-left,
.pulsar-handover-release .jaw-right,
.pulsar-handover-release .center-node {
animation: none;
transform: none;
opacity: 1;
}
}