Typing Simulator Text
A dynamic component that mimics real-time text typing and deletion effects.
Overview
The TypingSimulatorText
component is designed to simulate typing effects for a text or a sequence of texts. It provides an animated text display where the characters are typed and then deleted in a looping or one-time animation cycle.
The component also offers flexibility in customizing the typing and deleting speeds, as well as the appearance of the cursor. You can use it for creating dynamic and engaging user interfaces where text is dynamically typed out.
Preview
Usage
Code
Examples
text
This text
props defines the text that will be typed. It can either be a string or an array of strings.
typingSpeed
The typingSpeed
prop controls how fast the text is typed out.
deletingSpeed
The deletingSpeed
prop controls how fast the text is deleted.
pauseTime
The pauseTime
prop controls how long the text will pause before deleting.
cursorStyle
The cursorStyle
prop defines the character or style of the cursor.
loop
The loop
prop, when set to true, will restart the typing animation after it completes.
className
The className
prop allows you to add custom styling to the component.
Props
Prop | Type | Default |
---|---|---|
text | string | string[] | - |
typingSpeed | number | 100 |
deletingSpeed | number | 50 |
pauseTime | number | 1500 |
cursorStyle | string | "|" |
loop | boolean | false |
className | string | - |
as | ElementType<any, keyof IntrinsicElements> | "span" |