Text Rotate

DaisyUI

Text Rotate can show up to 6 lines of text, one at a time, with an infinite loop animation.

Basic Text Rotate

Rotates through 3 words in 10 seconds.

ONETWOTHREE
Large Centered Text Rotate

Big font size, horizontally centered.

DESIGNDEVELOPDEPLOYSCALEMAINTAINREPEAT
Inline Text Rotate

Different colors for each word inside a sentence.

Providing AI Agents for DesignersDevelopersManagers
Code Example
use rsxui::components::TextRotate;
use rsx_macros::rsx;
let html = rsx! {
    <TextRotate>
        <span>"ONE"</span>
        <span>"TWO"</span>
        <span>"THREE"</span>
    </TextRotate>
};