Marquee Footer
A copy-paste footers component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
FootersHTMLCSSany framework
Copy into your project
HTML
<footer class="nuda-footer-marquee">
<div class="nuda-footer-marquee__track">
<span>NudaUI · Zero deps · Copy-paste · Animations · Framework agnostic · </span>
<span>NudaUI · Zero deps · Copy-paste · Animations · Framework agnostic · </span>
</div>
</footer>CSS
.nuda-footer-marquee {
overflow: hidden;
border-top: 1px solid rgba(255, 255, 255, 0.06);
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
padding: 14px 0;
mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
-webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.nuda-footer-marquee__track {
display: flex;
width: max-content;
animation: nuda-fmq-scroll 22s linear infinite;
color: #a0a0a8;
font-size: 12px;
font-weight: 500;
letter-spacing: 0.04em;
}
.nuda-footer-marquee:hover .nuda-footer-marquee__track {
animation-play-state: paused;
}
@keyframes nuda-fmq-scroll {
to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
.nuda-footer-marquee__track { animation: none; }
}How to use Marquee Footer
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.