Audit
CSSA technical frame is scanned by a vertical rule moving left-to-right, revealing completed checkmarks.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Success and confirmation, Security and trust
- Industries
- Education and training, Cross-industry
- Style
- Technical · light stroke
- Set
- accredit
- Tags
- uiprogresslineloop
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-accredit-audit" data-pulsar="accredit-audit" viewBox="0 0 160 96"><rect width="72" height="56" x="44" y="20" stroke="currentColor" stroke-width="1.5" class="audit-frame" opacity=".3" rx="3"></rect><g class="checklist-items"><line x1="54" x2="86" y1="34" y2="34" stroke="currentColor" stroke-width="1.5" opacity=".4"></line><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m96 32 3 3 5-5" class="chk chk1"></path><line x1="54" x2="86" y1="48" y2="48" stroke="currentColor" stroke-width="1.5" opacity=".4"></line><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m96 46 3 3 5-5" class="chk chk2"></path><line x1="54" x2="86" y1="62" y2="62" stroke="currentColor" stroke-width="1.5" opacity=".4"></line><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m96 60 3 3 5-5" class="chk chk3"></path></g><line x1="44" x2="44" y1="16" y2="80" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2" class="scanner-rule"></line></svg>
animation.css
.pulsar-accredit-audit {
display: block;
width: 100%;
height: 100%;
}
.pulsar-accredit-audit .scanner-rule {
animation: accredit-audit-scan 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-accredit-audit .chk.chk1 {
animation: accredit-audit-reveal 4s ease-in-out infinite;
animation-delay: -3.5s;
}
.pulsar-accredit-audit .chk.chk2 {
animation: accredit-audit-reveal 4s ease-in-out infinite;
animation-delay: -3s;
}
.pulsar-accredit-audit .chk.chk3 {
animation: accredit-audit-reveal 4s ease-in-out infinite;
animation-delay: -2.5s;
}
@keyframes accredit-audit-scan {
0%,
15% {
transform: translateX(0);
}
60%,
80% {
transform: translateX(72px);
}
100% {
transform: translateX(0);
}
}
@keyframes accredit-audit-reveal {
0%,
20% {
opacity: 0.1;
transform: scale(0.7);
}
40%,
80% {
opacity: 1;
transform: scale(1);
}
100% {
opacity: 0.1;
transform: scale(0.7);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-accredit-audit .scanner-rule,
.pulsar-accredit-audit .chk,
.pulsar-accredit-audit .chk.chk1,
.pulsar-accredit-audit .chk.chk2,
.pulsar-accredit-audit .chk.chk3 {
animation: none;
transform: none;
opacity: 1;
}
}