Portal
CSSA doorway icon opens as a user avatar slides through, entering a custom-themed admin dashboard.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Onboarding and setup, Navigation and wayfinding
- Industries
- SaaS and software, Cross-industry
- Style
- Minimal line · light stroke
- Set
- tenant
- Tags
- geometricminimalringuistroke
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-portal" data-pulsar="tenant-portal" viewBox="0 0 160 96"><rect width="48" height="56" x="56" y="20" stroke="currentColor" stroke-width="2" opacity=".5" rx="6"></rect><rect width="20" height="48" x="59" y="24" fill="currentColor" fill-opacity=".1" stroke="currentColor" stroke-width="1.5" class="tenant-portal-leaf-l" rx="2"></rect><rect width="20" height="48" x="81" y="24" fill="currentColor" fill-opacity=".1" stroke="currentColor" stroke-width="1.5" class="tenant-portal-leaf-r" rx="2"></rect><circle cx="80" cy="48" r="5" fill="var(--pulsar-accent, currentColor)" class="tenant-portal-beacon"></circle><circle cx="80" cy="48" r="12" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="tenant-portal-halo"></circle></svg>
animation.css
.pulsar-tenant-portal {
display: block;
overflow: visible;
}
.pulsar-tenant-portal .tenant-portal-leaf-l {
animation: tenant-portal-leafl-anim 4000ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-tenant-portal .tenant-portal-leaf-r {
animation: tenant-portal-leafr-anim 4000ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-tenant-portal .tenant-portal-beacon {
transform-origin: 80px 48px;
animation: tenant-portal-beacon-anim 4000ms ease infinite;
}
.pulsar-tenant-portal .tenant-portal-halo {
transform-origin: 80px 48px;
animation: tenant-portal-halo-anim 4000ms ease infinite;
}
@keyframes tenant-portal-leafl-anim {
0%,
15% {
transform: translateX(0);
}
38%,
78% {
transform: translateX(-14px);
}
92%,
100% {
transform: translateX(0);
}
}
@keyframes tenant-portal-leafr-anim {
0%,
15% {
transform: translateX(0);
}
38%,
78% {
transform: translateX(14px);
}
92%,
100% {
transform: translateX(0);
}
}
@keyframes tenant-portal-beacon-anim {
0%,
25% {
transform: scale(0);
opacity: 0;
}
42%,
78% {
transform: scale(1);
opacity: 1;
}
90%,
100% {
transform: scale(0);
opacity: 0;
}
}
@keyframes tenant-portal-halo-anim {
0%,
35% {
transform: scale(0.5);
opacity: 0;
}
46% {
opacity: 0.9;
}
65% {
transform: scale(1.6);
opacity: 0;
}
100% {
transform: scale(1.6);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-tenant-portal * {
animation: none !important;
}
}