Simulate Typing And Erasing Text – TA.js

Category: Animation , Javascript | March 2, 2022
Author:vladpostu
Views Total:882 views
Official Page:Go to website
Last Update:March 2, 2022
License:MIT

Preview:

Simulate Typing And Erasing Text – TA.js

Description:

TA.js is a JavaScript library that can be used to simulate text typing and erasing just like a real person typing on a typewriter.

How to use it:

1. Load the TA.css and TA.js files in the document.

<link rel="stylesheet" href="TA.css" />
<script src="TA.js"></script>

2. Create a container to hold the text to be animated.

<div id="demo"></div>

3. To apply a blinking cursor to the end of the text while typing & deleting, add the CSS class caret to the container.

<div id="demo" class="caret"></div>

4. Initialize the TA.js and config the typing animation.

let ta = new TA({
    htmlEl: "#demo",
    minDelay: 50,
    maxDelay: 150,
});

5. Type something in that container.

ta.typingForward('CSSScript.Com...', 0);

6. Delete characters using the typingBackward method.

ta.typingBackward('CSS');

You Might Be Interested In:


Leave a Reply