text-stagger
v0.1.1
Published
[](https://react-ai-flow.com/)
Readme
Text Stagger
Text Stagger is a library that allows you to stagger text animations.
Usage
pnpm install text-staggerimport { Stagger } from "text-stagger";
// Create a stagger orchestrator instance
const stagger = new Stagger({
// options to pass
});
// Create a text instance
const text = stagger.observeText(someDivContainingText, {
splitter: 'word',
duration: 500,
});
