Domain
CSSA web browser address bar scrolls a custom domain string to the right, resolving into a secure locked lock.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Onboarding and setup, Security and trust
- Industries
- SaaS and software, Security and identity
- Style
- Minimal line · light stroke
- Set
- tenant
- Tags
- geometriclineminimaluistroke
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-tenant-domain" data-pulsar="tenant-domain" viewBox="0 0 160 96"><rect width="88" height="32" x="36" y="32" stroke="currentColor" stroke-width="1.8" opacity=".5" rx="6"></rect><line x1="50" x2="88" y1="48" y2="48" stroke="currentColor" stroke-linecap="round" stroke-width="2" opacity=".4"></line><g class="tenant-domain-lock"><rect width="14" height="12" x="100" y="44" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.8" rx="2"></rect><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.8" d="M103 44v-4c0-4 8-4 8 0v4" class="tenant-domain-shackle"></path></g></svg>
animation.css
.pulsar-tenant-domain {
display: block;
overflow: visible;
}
.pulsar-tenant-domain .tenant-domain-lock {
animation: tenant-domain-lock-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-tenant-domain .tenant-domain-shackle {
animation: tenant-domain-shackle-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
@keyframes tenant-domain-lock-anim {
0%,
15% {
transform: translateX(-16px);
opacity: 0.3;
}
38%,
80% {
transform: translateX(0);
opacity: 1;
}
92%,
100% {
transform: translateX(-16px);
opacity: 0.3;
}
}
@keyframes tenant-domain-shackle-anim {
0%,
25% {
transform: translateY(-4px);
}
38%,
80% {
transform: translateY(0);
}
92%,
100% {
transform: translateY(-4px);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-tenant-domain * {
animation: none !important;
}
}