Revision Sync
CSSTwo specification documents align their abstract row rows into matching parity to illustrate revision synchronization.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Decorative and illustrative
- Use cases
- Documents and files, Workflow and approvals
- Industries
- Manufacturing and industrial, Cross-industry
- Style
- Duotone · regular stroke
- Set
- bom
- Tags
- lineminimalprogress
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" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" class="pulsar pulsar-bom-revision-sync" data-pulsar="bom-revision-sync" viewBox="0 0 160 96"><rect width="42" height="50" x="32" y="24" stroke-width="1.5" opacity=".4" rx="3"></rect><rect width="42" height="50" x="86" y="24" stroke-width="1.5" opacity=".4" rx="3"></rect><line x1="40" x2="66" y1="36" y2="36" stroke-width="1.5" opacity=".5"></line><line x1="40" x2="66" y1="46" y2="46" stroke-width="1.5" opacity=".5"></line><line x1="40" x2="60" y1="56" y2="56" stroke-width="1.5" opacity=".5"></line><line x1="94" x2="120" y1="36" y2="36" stroke-width="1.5" opacity=".5"></line><line x1="94" x2="120" y1="46" y2="46" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="sync-row r2"></line><line x1="94" x2="114" y1="56" y2="56" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="sync-row r3"></line><path stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" d="m78 44 4 4-4 4" class="sync-arrow"></path></svg>
animation.css
.pulsar-bom-revision-sync {
display: block;
overflow: visible;
}
.pulsar-bom-revision-sync .sync-row.r2 {
animation: bom-revision-sync-r2 4000ms ease-in-out infinite;
}
.pulsar-bom-revision-sync .sync-row.r3 {
animation: bom-revision-sync-r3 4000ms ease-in-out infinite;
}
.pulsar-bom-revision-sync .sync-arrow {
animation: bom-revision-sync-arrow 4000ms ease-in-out infinite;
}
@keyframes bom-revision-sync-r2 {
0%,
25% {
transform: translateY(-4px);
opacity: 0.4;
}
50%,
85% {
transform: translateY(0);
opacity: 1;
}
100% {
transform: translateY(-4px);
opacity: 0.4;
}
}
@keyframes bom-revision-sync-r3 {
0%,
25% {
transform: translateY(4px);
opacity: 0.4;
}
50%,
85% {
transform: translateY(0);
opacity: 1;
}
100% {
transform: translateY(4px);
opacity: 0.4;
}
}
@keyframes bom-revision-sync-arrow {
0%,
15% {
transform: scale(0.8);
opacity: 0.2;
}
40%,
75% {
transform: scale(1.1);
opacity: 1;
}
90%,
100% {
transform: scale(0.8);
opacity: 0.2;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-bom-revision-sync .sync-row.r2,
.pulsar-bom-revision-sync .sync-row.r3,
.pulsar-bom-revision-sync .sync-arrow {
animation: none;
transform: none;
opacity: 1;
}
}