Skip to content

ekogoren/type.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Type.js

live demo

A super slim(2kb), free and simple to use library to type and erase text on the screen just as if it was typed by a keyboard.

Setup

// Header
<link rel="stylesheet" type="text/css" href="type.min.css"/>
//Before body closing tag
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script type="text/javascript" src="type.min.js"></script>

Usage

Instantiate

The selector must be first instantiate with any number of possible options. Wait will pause between end of execution and callback function or in between erase and type in eraseAndType method. showCursor will show the cursor when typing or deleting action takes place whileconstantCursor will show the cursor regardless. These are the defaults:

$("selector").type({
    typeSpeed:250,
    wait:500,
    showCursor:true,
    constantCursor:false
    });

Methods

After instantiation methods can be called upon the selector where the first parameter is the method name and the second is an option object. Global options can be overwritten and a done parameter can be added, a name of a function in the window scope that will be called once the action is done.

Type

Type requires a textToType parameter, a string that will be appended to the selector's text content.

Erase

Erase will delete the current text content within the selector.

eraseAndType

eraseAndType will first delete the current text content within the selector and then write the text given in the required textToType parameter.

Examples

$(document).ready(function(){
      $(".erase_and_type").type({typeSpeed:40, wait:300, constantCursor:true});
      $(".erase_and_type").type('eraseAndType',{textToType:"Erase this text and then type it again", done:'eraseAndType'});

    });

 function eraseAndType(){
        $(".erase_and_type").type('eraseAndType',{textToType:"Erase this text and then type it again", done:'eraseAndType'});
 }

Looping

$(document).ready(function(){
      $(".erase_and_type").type({typeSpeed:40, wait:300, constantCursor:true});
      $(".erase_and_type").type('eraseAndType',{textToType:"Erase this text and then type it again", done:'eraseAndType'});

    });

 function eraseAndType(){
        $(".erase_and_type").type('eraseAndType',{textToType:"Erase this text and then type it again", done:'eraseAndType'});
 }

Writing a few sentences and deleting them

$(document).ready(function(){
      $(".a_story").type({typeSpeed:170, wait:700,constantCursor:true});
      story_1();
    });

 function story_1(){
        $(".a_story").type('type', {textToType : 'This is a very long story. ', done:'story_2'});
 }

 function story_2(){
    $(".a_story").type('type', {textToType : 'It has a few sentences slowly written down. ', done:'story_3'});
 }

 function story_3(){
    $(".a_story").type('type', {textToType : 'But in the end it will be erased and written back for no good reason. ', done:'story_4'});
 }

 function story_4(){
    $(".a_story").type('erase', {typeSpeed:10,done:'story_1'});
 }

Important Notes

  1. Type does not currently support HTML tags, those will be broken by all actions.
  2. Callback function ('done' parameter) must be in the window scope, that is outside any function such as document ready.

Licence

Free to use and distribute.

Authors

Eko Goren

About

A super slim(2kb), free and simple to use library to type and erase text on the screen just as if it was typed by a keyboard.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors