Skip to content

Staggered List Reveal

A copy-paste scroll effects component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.

Scroll EffectsHTMLCSSany framework
Design systemTokens & components
AccessibilityWCAG 2.2 compliant
Dark modeOut of the box

Copy into your project

HTML
<div class="nuda-scx-stagger">
  <div class="nuda-scx-stagger__item">
    <span class="nuda-scx-stagger__icon">◆</span>
    <div class="nuda-scx-stagger__copy">
      <span class="nuda-scx-stagger__label">Design system</span>
      <span class="nuda-scx-stagger__sub">Tokens &amp; components</span>
    </div>
    <span class="nuda-scx-stagger__arrow">›</span>
  </div>
  <div class="nuda-scx-stagger__item">
    <span class="nuda-scx-stagger__icon">◈</span>
    <div class="nuda-scx-stagger__copy">
      <span class="nuda-scx-stagger__label">Accessibility</span>
      <span class="nuda-scx-stagger__sub">WCAG 2.2 compliant</span>
    </div>
    <span class="nuda-scx-stagger__arrow">›</span>
  </div>
  <div class="nuda-scx-stagger__item">
    <span class="nuda-scx-stagger__icon">◉</span>
    <div class="nuda-scx-stagger__copy">
      <span class="nuda-scx-stagger__label">Dark mode</span>
      <span class="nuda-scx-stagger__sub">Out of the box</span>
    </div>
    <span class="nuda-scx-stagger__arrow">›</span>
  </div>
</div>
CSS
.nuda-scx-stagger {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: .5rem;
}

.nuda-scx-stagger__item {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: .55rem .8rem;
  animation: _nuda-scxStagger .55s cubic-bezier(.16,1,.3,1) both;
}

.nuda-scx-stagger__icon {
  font-size: .9rem;
  color: #e4ff54;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.nuda-scx-stagger__copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.nuda-scx-stagger__label {
  color: #fafafa;
  font-size: .78rem;
  font-weight: 500;
}

.nuda-scx-stagger__sub {
  color: #555;
  font-size: .66rem;
}

.nuda-scx-stagger__arrow {
  color: #333;
  font-size: 1rem;
  font-weight: 300;
}

@keyframes _nuda-scxStagger {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion:reduce) {
  .nuda-scx-stagger__item {
    animation: none;
  }
}

How to use Staggered List Reveal

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.

More scroll effects components

← Browse all NudaUI components