Billing
CSSA user card rotates to reveal a receipt symbol, linking seat usage to the monthly billing cycle.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.6 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Documents and files, Workflow and approvals
- Industries
- SaaS and software, Cross-industry
- Style
- Duotone · light stroke
- Set
- seat
- Tags
- rotateminimaluigeometricbars
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-seat-billing" data-pulsar="seat-billing" viewBox="0 0 160 96"><g class="seat-billing-card"><rect width="52" height="56" x="54" y="20" fill="var(--pulsar-accent, currentColor)" fill-opacity=".1" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" rx="8"></rect><line x1="64" x2="96" y1="32" y2="32" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5"></line><line x1="64" x2="88" y1="42" y2="42" stroke="currentColor" stroke-linecap="round" stroke-width="1.25" opacity=".6"></line><line x1="64" x2="82" y1="50" y2="50" stroke="currentColor" stroke-linecap="round" stroke-width="1.25" opacity=".6"></line><rect width="32" height="8" x="64" y="58" fill="var(--pulsar-accent, currentColor)" fill-opacity=".25" rx="3"></rect></g></svg>
animation.css
.pulsar-seat-billing {
display: block;
overflow: visible;
}
.pulsar-seat-billing .seat-billing-card {
animation: seat-billing-flip-anim 4600ms ease-in-out infinite;
transform-origin: 80px 48px;
}
@keyframes seat-billing-flip-anim {
0%,
15% {
transform: rotateY(0deg) scale(0.95);
}
45%,
75% {
transform: rotateY(180deg) scale(1.05);
}
90%,
100% {
transform: rotateY(360deg) scale(0.95);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-seat-billing .seat-billing-card {
animation: none;
}
}