Results Stagger In
A copy-paste search & autocomplete component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
Search & AutocompleteHTMLCSSany framework
Magnetic button
Liquid morph
Border beam
Shine sweep
Copy into your project
HTML
<div class="nuda-stagres">
<div class="nuda-stagres__card" style="animation-delay:0ms">
<span class="nuda-stagres__dot"></span>
Magnetic button
</div>
<div class="nuda-stagres__card" style="animation-delay:90ms">
<span class="nuda-stagres__dot"></span>
Liquid morph
</div>
<!-- More cards -->
</div>CSS
.nuda-stagres {
display: flex;
flex-direction: column;
gap: 6px;
width: 100%;
max-width: 260px;
}
.nuda-stagres__card {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 12px;
background: rgba(255,255,255,.02);
border: 1px solid rgba(255,255,255,.06);
border-radius: 10px;
color: #fafafa;
font-size: 12px;
animation: _stagIn .55s cubic-bezier(.16,1,.3,1) both;
transition: border-color .25s,transform .2s;
}
.nuda-stagres__card:hover {
border-color: rgba(228,255,84,.3);
transform: translateX(3px);
}
.nuda-stagres__dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: #e4ff54;
flex-shrink: 0;
box-shadow: 0 0 8px #e4ff54;
}
@keyframes _stagIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: none;
}
}
@media (prefers-reduced-motion:reduce) {
.nuda-stagres__card {
animation: none;
}
}
How to use Results Stagger In
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.