Skip to content
/ typer Public

Typer is a tiny lightweight JavaScript plugin for adding nice, customizable Typer effect using custom HTML5 attribute

License

Notifications You must be signed in to change notification settings

birajrai/typer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Typer

Typer is a tiny lightweight JavaScript plugin for adding nice, customizable Typer effect using custom HTML5 attributes. This plugin is written in native JavaScript ES6 and does not requires any dependencies!

if you have an issue/idea, please feel free to fork the repo or send me a push request and i'll be happy to push it.

Usage

  1. Load the minified version typer.min.js by placing the script tag before the closing Body tag for better page speed performance.
<script src="js/typer.min.js"></script>
  1. Create an empty span tag with class name typewrite. You're able to pass the options using the custom HTML5 attributes:
  • data-loop: Stop the typing loop. Value shoud be yes or no
  • data-speed: Typing speed in millisecond. Default value is 100
  • data-delay: Time delay after word is complete in millisecond. Default value is 1000
  • data-words: Words to add separated by comma i.e. ["...","...","..."]
<h3>Hey, I'm
    <span class="typewrite" data-loop="yes" data-speed="100" data-delay="1000" data-words='["word 1", "word 2", "word 3"]'></span>
</h3>

About

Typer is a tiny lightweight JavaScript plugin for adding nice, customizable Typer effect using custom HTML5 attribute

Topics

Resources

License

Stars

Watchers

Forks