Release Tag
CSSA release label tag snaps into position along a commit rail, sliding securely into a locked notch with an accent confirmation beacon.
- Tier
- CSS
- Dependencies
- None
- Duration
- 5.5 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Success and confirmation, Workflow and approvals
- Industries
- SaaS and software, Cross-industry
- Style
- Minimal line · light stroke
- Set
- changelog
- Tags
- geometriclineloopminimalui
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-changelog-tag" data-pulsar="changelog-tag" viewBox="0 0 160 96"><line x1="20" x2="140" y1="48" y2="48" stroke="currentColor" stroke-linecap="round" stroke-width="1.5"></line><circle cx="48" cy="48" r="4" fill="currentColor"></circle><circle cx="80" cy="48" r="4" fill="currentColor" fill-opacity=".1" stroke="currentColor" stroke-width="1.5"></circle><g id="changelog-tag-badge"><path fill="var(--pulsar-accent, currentColor)" fill-opacity=".1" stroke="var(--pulsar-accent, currentColor)" stroke-linejoin="round" stroke-width="1.5" d="m76 48 10-12h36v24H86Z"></path><circle cx="90" cy="48" r="2" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.2"></circle><line x1="98" x2="114" y1="45" y2="45" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5"></line><line x1="98" x2="110" y1="51" y2="51" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5"></line></g><circle id="changelog-tag-beacon" cx="80" cy="48" r="6" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" opacity="0"></circle></svg>
animation.css
.pulsar-changelog-tag #changelog-tag-badge {
animation: changelog-tag-snap 5500ms cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}
@keyframes changelog-tag-snap {
0%,
25% {
transform: translate(24px, -12px);
opacity: 0;
}
38%,
82% {
transform: translate(0, 0);
opacity: 1;
}
92%,
100% {
transform: translate(24px, -12px);
opacity: 0;
}
}
.pulsar-changelog-tag #changelog-tag-beacon {
transform-origin: 80px 48px;
animation: changelog-tag-beacon-pop 5500ms ease-out infinite;
}
@keyframes changelog-tag-beacon-pop {
0%,
36% {
transform: scale(0.6);
opacity: 0;
}
42%,
76% {
transform: scale(1.4);
opacity: 0.85;
}
86%,
100% {
transform: scale(0.6);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-changelog-tag * {
animation: none !important;
}
}