Signature Finish
CSSA precision pen tip sweeps across a signature line, drawing a fluid curve that glows and settles.
- 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
- linestrokeloop
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-signoff" data-pulsar="handover-signoff" viewBox="0 0 160 96"><line x1="36" x2="124" y1="68" y2="68" stroke="currentColor" stroke-width="1.5" class="sign-line" opacity=".3"></line><text x="36" y="80" fill="currentColor" font-family="sans-serif" font-size="7" opacity=".3">AUTHORISED SIGNATORY</text><path stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="100" stroke-dashoffset="100" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M42 62c4-8 8-10 12 0 4 8 8-12 14-6s14-2 22 4 14-8 24 2" class="signature"></path><g class="pen-nib"><path fill="currentColor" fill-opacity=".8" d="m114 42 4 18-10-5Z"></path><circle cx="118" cy="60" r="2" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-handover-signoff {
display: block;
width: 100%;
height: 100%;
}
.pulsar-handover-signoff .signature {
animation: handover-signoff-draw 4s ease-in-out infinite;
}
.pulsar-handover-signoff .pen-nib {
animation: handover-signoff-glide 4s ease-in-out infinite;
}
@keyframes handover-signoff-draw {
0%,
15% {
stroke-dashoffset: 100;
}
50%,
80% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: -100;
}
}
@keyframes handover-signoff-glide {
0%,
15% {
transform: translate(-72px, 0);
opacity: 0;
}
20% {
opacity: 1;
}
50% {
transform: translate(0, 0);
opacity: 1;
}
65%,
100% {
transform: translate(6px, -8px);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-handover-signoff .signature,
.pulsar-handover-signoff .pen-nib {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}