A Reflex custom component for looping text based on easy-react-text-loop React component.
pip install reflex-text-loop
poetry add reflex-text-loop
Name | Type | Default | Description |
---|---|---|---|
animation |
string |
tween |
One of tween , spring , inertia , keyframes , just |
timeout |
number |
2500 |
Animation timout in ms |
text |
string |
None | Comma separated words which will be used in animation |
from reflex_text_loop import TextLoop
def index():
rx.text(
TextLoop(
"Un", "Dros", "Tres"
)
)