Archive
CSSA rectangular box outline slowly pulses in scale as a sequence of three horizontal text lines descends into it and fades from view.
- 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
- minimalbarsstaggerloop
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-archive" data-pulsar="clause-archive" viewBox="0 0 160 96"><g stroke="currentColor" stroke-linecap="round" stroke-width="1.5" class="archive-box"><path d="M42 54v20h76V54"></path><line x1="36" x2="124" y1="54" y2="54"></line></g><g class="descending-clauses"><line x1="56" x2="104" y1="28" y2="28" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2" class="cl c1"></line><line x1="56" x2="96" y1="40" y2="40" stroke="currentColor" stroke-linecap="round" stroke-width="2" class="cl c2"></line></g><circle cx="80" cy="64" r="2" fill="var(--pulsar-accent, currentColor)" class="archive-slot-dot"></circle></svg>
animation.css
.pulsar-clause-archive {
display: block;
width: 100%;
height: 100%;
}
.pulsar-clause-archive .descending-clauses .cl.c1 {
animation: clause-archive-drop-1 4s ease-in-out infinite 0s;
}
.pulsar-clause-archive .descending-clauses .cl.c2 {
animation: clause-archive-drop-2 4s ease-in-out infinite -2s;
}
.pulsar-clause-archive .archive-box {
animation: clause-archive-box 4s ease-in-out infinite;
}
.pulsar-clause-archive .archive-slot-dot {
animation: clause-archive-dot 4s ease-in-out infinite;
}
@keyframes clause-archive-drop-1 {
0% {
transform: translateY(-8px);
opacity: 0;
}
30% {
opacity: 1;
}
70% {
transform: translateY(24px);
opacity: 0.8;
}
90%,
100% {
transform: translateY(30px);
opacity: 0;
}
}
@keyframes clause-archive-drop-2 {
0% {
transform: translateY(-8px);
opacity: 0;
}
30% {
opacity: 1;
}
70% {
transform: translateY(24px);
opacity: 0.8;
}
90%,
100% {
transform: translateY(30px);
opacity: 0;
}
}
@keyframes clause-archive-box {
0%,
100% {
opacity: 0.4;
}
50% {
opacity: 0.9;
}
}
@keyframes clause-archive-dot {
0%,
100% {
opacity: 0.3;
}
50% {
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-clause-archive .descending-clauses .cl.c1,
.pulsar-clause-archive .descending-clauses .cl.c2,
.pulsar-clause-archive .archive-box,
.pulsar-clause-archive .archive-slot-dot {
animation: none;
transform: none;
opacity: 0.8;
}
}