https://github.com/r2hu1/typed-h
A simple, lightweight Typewritting effect for your HTML elements.
https://github.com/r2hu1/typed-h
javascript typewriter-effect
Last synced: about 1 year ago
JSON representation
A simple, lightweight Typewritting effect for your HTML elements.
- Host: GitHub
- URL: https://github.com/r2hu1/typed-h
- Owner: r2hu1
- Created: 2024-02-14T17:51:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-17T15:56:41.000Z (over 2 years ago)
- Last Synced: 2024-02-17T16:47:40.791Z (over 2 years ago)
- Topics: javascript, typewriter-effect
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Typed-H
A simple, lightweight Typewritting effect for your HTML elements.
## How to use
- Add the following script to your HTML file:
```html
```
- Add the following element to your HTML file:
```html
Some text
```
- Intialize TypedH
```js
const element = document.querySelector(".some-classname");
typedH({element,speed:200,reverced:false});
```