Analyze
CSSThree stacked text line paths pulse in opacity from top to bottom as a thin horizontal scanning line sweeps continuously up and down across them.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Documents and files
- Industries
- Legal, Cross-industry
- Style
- Minimal line · light stroke
- Set
- clause
- Tags
- barslineminimalloop
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-clause-analyze" data-pulsar="clause-analyze" viewBox="0 0 160 96"><g stroke="currentColor" stroke-width="1.25" class="doc-frame" opacity=".4"><path d="M42 22h-6v52h6"></path></g><g class="clause-lines"><line x1="48" x2="116" y1="34" y2="34" stroke="currentColor" stroke-linecap="round" stroke-width="2" class="line l1"></line><line x1="48" x2="124" y1="48" y2="48" stroke="currentColor" stroke-linecap="round" stroke-width="2" class="line l2"></line><line x1="48" x2="98" y1="62" y2="62" stroke="currentColor" stroke-linecap="round" stroke-width="2" class="line l3"></line></g><g class="scan-beam"><line x1="40" x2="128" y1="26" y2="26" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5"></line><circle cx="40" cy="26" r="2" fill="var(--pulsar-accent, currentColor)"></circle><circle cx="128" cy="26" r="2" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-clause-analyze {
display: block;
width: 100%;
height: 100%;
}
.pulsar-clause-analyze .scan-beam {
animation: clause-analyze-sweep 4s ease-in-out infinite;
}
.pulsar-clause-analyze .line.l1 {
animation: clause-analyze-glow 4s ease-in-out infinite 0s;
}
.pulsar-clause-analyze .line.l2 {
animation: clause-analyze-glow 4s ease-in-out infinite -3s;
}
.pulsar-clause-analyze .line.l3 {
animation: clause-analyze-glow 4s ease-in-out infinite -2s;
}
@keyframes clause-analyze-sweep {
0%,
100% {
transform: translateY(4px);
opacity: 0.3;
}
50% {
transform: translateY(44px);
opacity: 1;
}
}
@keyframes clause-analyze-glow {
0%,
100% {
opacity: 0.35;
}
20% {
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-clause-analyze .scan-beam,
.pulsar-clause-analyze .line.l1,
.pulsar-clause-analyze .line.l2,
.pulsar-clause-analyze .line.l3 {
animation: none;
transform: none;
opacity: 0.7;
}
}