Follower Count Tick-Up
A copy-paste profile headers component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
Profile HeadersHTMLCSSany framework
12,480
Followers
Copy into your project
HTML
<div class="nuda-tick">
<div class="nuda-tick__num" aria-label="12480 followers">
<span>1</span><span>2</span><span>,</span>
<span>4</span><span>8</span><span>0</span>
</div>
<div class="nuda-tick__label">Followers</div>
</div>CSS
/* Follower Count Tick-Up
Numbers roll in one digit at a time.
Customize: --tick-color, font-size */
.nuda-tick {
display: inline-flex;
flex-direction: column;
align-items: center;
gap: 4px;
padding: 14px 22px;
background: #0c0c10;
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 12px;
font-family: system-ui, sans-serif;
color: #fafafa;
}
.nuda-tick__num {
display: inline-flex;
font-size: 1.4rem;
font-weight: 700;
font-variant-numeric: tabular-nums;
letter-spacing: -0.02em;
overflow: hidden;
}
.nuda-tick__num span {
display: inline-block;
animation: nuda-tick-roll 1s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
.nuda-tick__num span:nth-child(1) { animation-delay: 0s; }
.nuda-tick__num span:nth-child(2) { animation-delay: 0.08s; }
.nuda-tick__num span:nth-child(3) { animation-delay: 0.16s; }
.nuda-tick__num span:nth-child(4) { animation-delay: 0.24s; }
.nuda-tick__num span:nth-child(5) { animation-delay: 0.32s; }
.nuda-tick__num span:nth-child(6) { animation-delay: 0.4s; }
.nuda-tick__label {
font-size: 0.72rem;
color: #63636e;
text-transform: uppercase;
letter-spacing: 0.08em;
}
@keyframes nuda-tick-roll {
from { transform: translateY(100%); opacity: 0; }
to { transform: none; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
.nuda-tick__num span { animation: none; transform: none; opacity: 1; }
}How to use Follower Count Tick-Up
Paste the HTML where you need it and the CSS into a global stylesheet (or a <style> tag). Every class is prefixed nuda- so it never collides with Tailwind or your own styles. Tweak the CSS custom properties to match your design system.
Works in React, Vue, Svelte, Astro, Next.js, Nuxt, Laravel Blade, Django, Rails — or a single .html file. No npm install, no build step.