Typing Presence
A copy-paste indicators component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
IndicatorsHTMLCSSany framework
Sara is typing…
Copy into your project
HTML
<div class="nuda-typing">
<span></span><span></span><span></span>
<span class="nuda-typing__name">Sara is typing…</span>
</div>CSS
.nuda-typing > span:not(.nuda-typing__name) {
width: 5px;
height: 5px;
border-radius: 50%;
background: #a0a0a8;
animation: nuda-typing-dot 1.2s ease-in-out infinite;
}
@keyframes nuda-typing-dot {
0%, 80%, 100% { opacity: 0.3; transform: translateY(0); }
40% { opacity: 1; transform: translateY(-3px); }
}How to use Typing Presence
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.