Manual Review
CSSA reticle inspection window glides horizontally along an axis, scanning underlying metadata.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Workflow and approvals
- Industries
- Insurance, Cross-industry
- Style
- Technical · light stroke
- Set
- underwrite
- Tags
- uigridloop
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-underwrite-scrutiny" data-pulsar="underwrite-scrutiny" viewBox="0 0 160 96"><g class="data-background"><line x1="30" x2="130" y1="36" y2="36" stroke="currentColor" stroke-dasharray="2 4" opacity=".3"></line><line x1="30" x2="130" y1="48" y2="48" stroke="currentColor" opacity=".2"></line><line x1="30" x2="130" y1="60" y2="60" stroke="currentColor" stroke-dasharray="2 4" opacity=".3"></line></g><g class="inspection-loupe"><rect width="32" height="36" x="64" y="30" fill="var(--pulsar-accent, currentColor)" fill-opacity=".1" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" rx="2"></rect><line x1="80" x2="80" y1="26" y2="70" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="2 2"></line><line x1="60" x2="100" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="2 2"></line><circle cx="80" cy="48" r="3" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-underwrite-scrutiny {
display: block;
width: 100%;
height: 100%;
}
.pulsar-underwrite-scrutiny .inspection-loupe {
animation: underwrite-scrutiny-scan 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes underwrite-scrutiny-scan {
0%,
100% {
transform: translateX(-24px);
}
50% {
transform: translateX(24px);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-underwrite-scrutiny .inspection-loupe {
animation: none;
transform: none;
}
}