UNPKG

ani-js

Version:

A lightweight JavaScript animation library that mimics Tailwind-style utility classes — no Tailwind installation needed.

11 lines (9 loc) 262 B
import { animationsCSS } from './css.js'; let injected = false; export function injectCSS() { if (injected) return; const style = document.createElement('style'); style.textContent = animationsCSS; document.head.appendChild(style); injected = true; }