This project creates a typing effect animation using plain JavaScript. It cycles through a list of career titles and displays them letter by letter, giving the illusion of typing.
- Smooth typing effect that loops through multiple words.
- Auto-restarts after finishing the word list.
- Uses only HTML, CSS, and JavaScript (no libraries required).
- Beginner-friendly and easy to customize.
project-folder/
│── index.html # Main HTML file
│── style.css # Styling for the project
│── script.js # JavaScript logic for the typing effect
│── README.md # Project documentation
- HTML5
- CSS3
- JavaScript (Vanilla)
- JavaScript selects the target container element.
- A list of words (
careers
) is defined. - A loop types out one character at a time.
- Once a word finishes, it moves to the next.
- The animation repeats infinitely.
---
- Clone the repository:
git clone https://github.com/droidevs/Auto-Text-Effect-Animation.git
- Open
index.html
in your browser. - Watch the typing effect in action!
This project is licensed under the Apache 2.0 License. Feel free to use and modify it in your own projects!