Replica
CSSA database symbol splits into primary and replica copies, with the replica flashing and expanding as the primary goes offline.
- Tier
- CSS
- Dependencies
- None
- Duration
- 5.5 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Errors and warnings, Sync and integration
- Industries
- SaaS and software, IT services and infrastructure
- Style
- Technical · light stroke
- Set
- failover
- Tags
- geometricglowlineloopscale
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-failover-replica" data-pulsar="failover-replica" viewBox="0 0 160 96"><g id="failover-replica-db-p" stroke="currentColor" stroke-linejoin="round" stroke-width="1.5"><ellipse cx="48" cy="28" fill="currentColor" fill-opacity=".08" rx="20" ry="7"></ellipse><path d="M28 28v40c0 4 40 4 40 0V28"></path><path d="M28 42c0 4 40 4 40 0"></path><path d="M28 55c0 4 40 4 40 0"></path><circle cx="48" cy="28" r="2.5" fill="currentColor"></circle></g><g id="failover-replica-db-s" stroke="var(--pulsar-accent, currentColor)" stroke-linejoin="round" stroke-width="1.5"><ellipse cx="112" cy="28" fill="var(--pulsar-accent, currentColor)" fill-opacity=".08" rx="20" ry="7"></ellipse><path d="M92 28v40c0 4 40 4 40 0V28"></path><path d="M92 42c0 4 40 4 40 0"></path><path d="M92 55c0 4 40 4 40 0"></path><circle id="failover-replica-crown" cx="112" cy="28" r="3" fill="var(--pulsar-accent, currentColor)"></circle></g><line id="failover-replica-bridge" x1="68" x2="92" y1="48" y2="48" stroke="currentColor" stroke-dasharray="2 3" stroke-width="1.2" opacity=".5"></line></svg>
animation.css
.pulsar-failover-replica #failover-replica-db-p {
animation: failover-replica-p-anim 5500ms ease-in-out infinite;
}
@keyframes failover-replica-p-anim {
0%,
28% {
opacity: 1;
}
38%,
82% {
opacity: 0.18;
}
90%,
100% {
opacity: 1;
}
}
.pulsar-failover-replica #failover-replica-db-s {
transform-origin: 112px 48px;
animation: failover-replica-s-anim 5500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes failover-replica-s-anim {
0%,
32% {
transform: scale(0.92);
opacity: 0.4;
}
42%,
82% {
transform: scale(1.08);
opacity: 1;
}
92%,
100% {
transform: scale(0.92);
opacity: 0.4;
}
}
.pulsar-failover-replica #failover-replica-crown {
animation: failover-replica-crown-anim 5500ms ease-in-out infinite;
}
@keyframes failover-replica-crown-anim {
0%,
34% {
opacity: 0.2;
transform: scale(0.7);
}
44%,
80% {
opacity: 1;
transform: scale(1.4);
}
90%,
100% {
opacity: 0.2;
transform: scale(0.7);
}
}
.pulsar-failover-replica #failover-replica-bridge {
animation: failover-replica-bridge-anim 5500ms ease-in-out infinite;
}
@keyframes failover-replica-bridge-anim {
0%,
30% {
opacity: 0.6;
}
38%,
84% {
opacity: 0.1;
}
92%,
100% {
opacity: 0.6;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-failover-replica * {
animation: none !important;
}
}