Parse
CSSA single continuous line segment representing text breaks into three distinct block segments that separate horizontally, then reassemble into a single line.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Workflow and approvals
- Industries
- Legal, Cross-industry
- Style
- Minimal line · light stroke
- Set
- clause
- Tags
- barsminimallineloop
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-parse" data-pulsar="clause-parse" viewBox="0 0 160 96"><g stroke="currentColor" stroke-linecap="round" stroke-width="1.25" class="context-frame" opacity=".3"><line x1="36" x2="124" y1="32" y2="32"></line><line x1="36" x2="108" y1="64" y2="64"></line></g><g class="parse-row" transform="translate(0 48)"><line x1="36" x2="60" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2.25" class="seg s-left"></line><line x1="66" x2="94" stroke="currentColor" stroke-linecap="round" stroke-width="2.25" class="seg s-mid"></line><line x1="100" x2="124" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2.25" class="seg s-right"></line></g><g stroke="var(--pulsar-accent, currentColor)" class="split-ticks" opacity=".5"><line x1="63" x2="63" y1="44" y2="52" class="tk t1"></line><line x1="97" x2="97" y1="44" y2="52" class="tk t2"></line></g></svg>
animation.css
.pulsar-clause-parse {
display: block;
width: 100%;
height: 100%;
}
.pulsar-clause-parse .seg.s-left {
animation: clause-parse-left 4s ease-in-out infinite;
}
.pulsar-clause-parse .seg.s-mid {
animation: clause-parse-mid 4s ease-in-out infinite;
}
.pulsar-clause-parse .seg.s-right {
animation: clause-parse-right 4s ease-in-out infinite;
}
.pulsar-clause-parse .split-ticks {
animation: clause-parse-ticks 4s ease-in-out infinite;
}
@keyframes clause-parse-left {
0%,
100% {
transform: translateX(0);
}
40%,
60% {
transform: translateX(-8px);
}
}
@keyframes clause-parse-mid {
0%,
100% {
transform: scaleX(1);
opacity: 0.8;
}
40%,
60% {
transform: scaleX(1.1);
opacity: 1;
}
}
@keyframes clause-parse-right {
0%,
100% {
transform: translateX(0);
}
40%,
60% {
transform: translateX(8px);
}
}
@keyframes clause-parse-ticks {
0%,
100% {
opacity: 0;
}
40%,
60% {
opacity: 0.8;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-clause-parse .seg.s-left,
.pulsar-clause-parse .seg.s-mid,
.pulsar-clause-parse .seg.s-right,
.pulsar-clause-parse .split-ticks {
animation: none;
transform: none;
opacity: 0.8;
}
}