Extract
CSSA rectangular bracket outline expands vertically as a smaller interior text line path slides upward from the bottom and fades out near the top.
- 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
- minimallinearrowloop
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-extract" data-pulsar="clause-extract" viewBox="0 0 160 96"><g stroke="currentColor" stroke-linecap="round" stroke-width="1.5" class="bracket-top"><path d="M44 32h-6v-8h84v8h-6"></path></g><g stroke="currentColor" stroke-linecap="round" stroke-width="1.5" class="bracket-bottom"><path d="M44 64h-6v8h84v-8h-6"></path></g><g stroke="currentColor" stroke-linecap="round" stroke-width="1.25" class="static-context" opacity=".25"><line x1="48" x2="112" y1="36" y2="36"></line><line x1="48" x2="112" y1="60" y2="60"></line></g><g class="extracting-clause"><line x1="52" x2="108" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2"></line><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m76 43 4-4 4 4"></path></g></svg>
animation.css
.pulsar-clause-extract {
display: block;
width: 100%;
height: 100%;
}
.pulsar-clause-extract .bracket-top {
animation: clause-extract-top 4s ease-in-out infinite;
}
.pulsar-clause-extract .bracket-bottom {
animation: clause-extract-bottom 4s ease-in-out infinite;
}
.pulsar-clause-extract .extracting-clause {
animation: clause-extract-lift 4s ease-in-out infinite;
}
@keyframes clause-extract-top {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-4px);
}
}
@keyframes clause-extract-bottom {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(4px);
}
}
@keyframes clause-extract-lift {
0% {
transform: translateY(8px);
opacity: 0.2;
}
40%,
60% {
transform: translateY(-4px);
opacity: 1;
}
100% {
transform: translateY(-16px);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-clause-extract .bracket-top,
.pulsar-clause-extract .bracket-bottom,
.pulsar-clause-extract .extracting-clause {
animation: none;
transform: none;
opacity: 0.8;
}
}