JSPM

  • Created
  • Published
  • Downloads 13965
  • Score
    100M100P100Q122639F
  • License General Public License

A lightweight, easy-to-implement jQuery animated typing plugin that types text for you.

Package Exports

  • typeit

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (typeit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

TypeIt: A jQuery Animated Typing Plugin

Description

A jQuery plugin that outputs text like it's being typed. It allows you to type single strings, multiple strings that stack, and multiple strings that delete & replace each other. It's lightweight, scalable, responsive, and super easy to implement.

Demo

Checkout several demos and a sandbox where you can try it out at alexmacarthur.github.io/typeit.

Setup

Download the Plugin

Download the ZIP, clone this repo, or install via npm with npm install typeit.

Initializing on Your Site

  1. Create an empty HTML element to select.

<span class="type-it"></span>

  1. Load jQuery, typeit.js, and typeit.css in your page.
<link rel="stylesheet" type="text/css" href="typeit.css">

<script src="jquery-2.1.4.min.js"></script>
<script src="typeit.js"></script>

You're ready to initialize it!

Usage

Calling TypeIt on Your Site

You can modify the options for the plugin in two different ways -- either by inserting them directly into the function call, or by using data attributes.

<span class="type-it"
data-typeit-whattotype="A new string to type."
data-typeit-speed="100"
data-typeit-lifelike="true"
data-typeit-showcursor="true">

</span>

$('.type-it').typeIt();

or...

<span class="type-it"></span>

 $('.type-it').typeIt({
   whatToType:'Enter your string here!',
   typeSpeed: 300,
   lifeLike: false,
   showCursor: true
 });

Typing Multiple Strings

Aside from simply typing a single string, you can configure TypeIt to type multiple strings. By default, they stack on top of each other. To use this feature, just enter an array of several strings.

  $('.type-it').typeIt({
    whatToType:['Enter your string here!', 'Another string!']
  });

Or, you can have type strings that delete & replace each other. Do this, set the 'breakLines' setting to false.

  $('.type-it').typeIt({
    whatToType: ['Enter your string here!', 'Another string!'],
    breakLines: false
  });

Using a Callback Function

TypeIt allows you to use a custom callback function when you've completed typing. To use one, simply add it as the second argument when it's initialized.

  $('.typeit-box').typeIt({
    whatToType: 'Here is a string!',
  }, function() {
    console.log('This is your callback function!');
  });
</script>

Options

There are a number of options you may use to customize typeIt.

Option Description Default Value
whatToType The string to be typed. 'This is the default string. Please replace this string with your own.'
typeSpeed The typing speed. 200
lifeLike Will make the typing pace irregular, as if a real person is doing it. true
showCursor Show a blinking cursor at the end of the string. true
breakLines Choose whether you want multiple strings to be printed on top of each other (breakLines = true), or if you want each string to be deleted and replaced by the next one (breakLines = false). true
breakWait The amount of time between typing multiple strings. 500
delayStart The amount of time before the plugin begins typing after initalizing. 250

Ideas for Improvement?

If you choose to develop it locally, Gulp is configured to check & minify JavaScript and compile & compress SASS. In the root of the repo, use these commands to run these default tasks and watch for file changes (make sure Node.js, npm, and Gulp are installed on your computer):

npm install
gulp