Skip to main content

βš™οΈ Configuration

πŸ“ Text Items

0Hello World
1Welcome to Web Scrolling Text
2Customize Your Animation
3🎨 Beautiful Animations

πŸ‘οΈ Preview

Hello World
Current Index: 0 / 3

πŸ’» Generated Code

import ScrollingText from "web-scrolling-text/react";

function App() {
return (
<ScrollingText options={{
interval: 3000,
animationDuration: 1000,
loop: true,
}}>
<div>Hello World</div>
<div>Welcome to Web Scrolling Text</div>
<div>Customize Your Animation</div>
<div>🎨 Beautiful Animations</div>
</ScrollingText>
);
}