🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Typewriter is a lightweight jQuery typewriting plugin which allows you to apply human typing/deleting effects on an array of text, with prefix and blinking cursor support.

Typing text-animation text-rotator Typewriter

Documentation

jQuery Typewriter Plugin

Typewriter is a jQuery plugin which types text, erases and emulates terminal typing style.

Demo

####Usage

<div id="typewriter">  <script src="js/jquery.min.js"></script> <script src="js/jquery.typewriter.min.js"></script>  <script> $(document).ready(function() {     $("#typewriter").typewriter({         prefix : "Prefix : ",         text : ["Hey", "this", "is", "cool", "isn't it ?"],         typeDelay : 200,         waitingTime : 1000,         blinkSpeed : 1000     }); }); 

####Styling

You can style it very easily by applying CSS for following IDs

<style> #typewriter {     color: #31708f;     background-color: #d9edf7;     padding: 15px;     border: none;     ... }  #typewriter-prefix {     font-size: 24px;     font-weight: 700;     ... }  #typewriter-text {     font-size: 24px;     font-weight: 500;     ... } </style> 

You May Also Like