typish

0.2.3 • Public • Published

typish

Yet another typewriter simulator. Demo →

Unlike others like it, typish supports inserting HTML elements. This means you'll be able to do pseudo-syntax highlighting or insert buttons, like below.

var typish = require('typish');
 
function repeat() {
  typish('#container')
    .type('hello stranger')
    .del(8)
    .type('you. ')
    .type('continue', '<a href="next.html">')
    .wait(50)
    .then(repeat)
}
 
repeat();

Status npm version

API cheatsheet

typish(element)
  .speed(50)         // sets base speed in milliseconds
  .type("hi")        // types something letter by letter
  .type("hi", "red") // types, with classname set to 'red'
  .type("hi", "<b>") // types, uses a custom tag
  .type("hi", 0)     // types immediately
  .del()             // delete 1 character
  .del(4)            // delete 4 characters
  .wait()            // pauses for a while
  .wait(10)          // pauses (10x longer)
  .clear()           // clears everything
  .clear(0)          // clears everything immediately (speed is 0)
  .then(function)    // executes something asynchronously

typish()

typish(element)

Starts typish. element may be a DOM element, selector, or a jQuery object. This returns a typish object that you can run methods on.

typish('#container')
typish($("#box"))
typish(el)

A typish instance also has the following variables:

  • this.el: the element
  • this.length: how many characters are present at the moment
  • this.last: the last <span> in the box

type()

type(text, [element, speed])

Types some text. If element is given, it'll start a new span. You can also give a different speed to make it faster or slower.

typish(el)
  .type('hello')
  .type('hello', 'keyword')
  .type('hello', 10)
  .type('hello', 'keyword', 10)

When a name is passed to the element parameter, it'll be used as a class name for a <span>.

typish(el)
  .type('Jack', 'name')
 
<div id='box'><span class='name'>Jack</span></div>

Each .type() call creates a new span element.

typish(el)
  .type('Jack ', 'name')
  .type('Sparrow', 'last')
 
<div id='box'>
  <span class='name'>Jack </span>
  <span class='last'>Sparrow</span>
</div>

The parameter element can also be an HTML tag.

typish('#box')
  .type('download me', '<a href="download.html">')
 
<div id='box'>
  <a href="download.html">download me</a>
</div>

The speed argument is multiplied by whatever you set on speed(). Doing .type('hello', 1/2) will type a message 2x as fast as normal.

typish('#box')
  .type('download me', '<b>', 1/2)

del()

del([count, speed])

Deletes characters. if count is given, it'll delete that many characters. If speed is given, that's the speed it'll run on.

typish('.box')
  .type('hello John')
  .del(4)
  .type('Sherlock')

The speed argument is multiplied by the time it takes to type one character (ie, whatever you set on speed()). Doing .del(10, 1/2) will delete 10 characters 2x as fast as it types.

wait()

wait([speed])

Waits a while. This waits the equivalent of whatever you set in .speed(), that is, it waits exactly the time it takes to type 1 character.

The speed argument is multiplied by the time it takes to type one character (ie, whatever you set on speed()). Doing .wait(10) pauses for the time it takes to type 10 characters.

typish(el)
  .type('hello')
  .wait(10)
  .type('there')

clear()

clear([speed])

Clears the entire thing one letter at a time. To clear everything instantly, use .clear(0).

typish('.box')
  .type('hello.')
  .clear()

Also see type() for an explanation on the speed parameter.

then()

then(function)

Executes a function asynchronously.

typish('#box')
  .type('hello')
  .then(popupSomething)
  .wait()
  .type('there')
  .then(popupSomethingAgain)

speed()

speed(ms)

Sets the base speed. All speed arguments will be multiplied by this number.

typish('.box')
  .speed(50)
  .type('hello')

You can call speed() in the middle of an animation to slow it down or speed it up.

typish('.box')
  .speed(50)
  .type('hello ')
  .speed(100)
  .type('world')

queue()

queue(fn(next))

Queues a command for execution. The function fn will be invoked, where the next parameter should be ran to move onto the next thing on queue.

typish(el)
  .queue(function (next) {
    this.el.className += ' -fade-in'
    setTimeout(next, 100)
  })

This is used for asynchronous functions. See then() if you would like to execute something synchronously.

defer()

defer(next, [speed])

Waits then runs next. Useful inside queue().

typish(el)
  .queue(function (next) {
    //dosomething
    this.defer(next)
  })

See type() for an explanation of the speed parameter.

Blinking cursor

This is optional, and it's done via CSS. Check out typish.scss for some helpers on getting this to work.

@import 'typish';
.box {
  @include typish-cursor($color: #a83);
}
 
@include typish-keyframes;

Similar projects

  • jquery.typer.js
    • pro: easier to configure
    • con: jQuery dependency
    • con: can't configure speed while it types
    • con: doesn't support spans
  • malarkey
    • pro: smaller footprint in bytes
    • con: doesn't support spans
  • typed.js
    • pro: easier to setup, just an array of sentences
    • con: can't delete parts of a message
    • con: doesn't support spans

Thanks

typish © 2015+, Rico Sta. Cruz. Released under the MIT License.
Authored and maintained by Rico Sta. Cruz with help from contributors (list).

ricostacruz.com  ·  GitHub @rstacruz  ·  Twitter @rstacruz

Package Sidebar

Install

npm i typish

Weekly Downloads

1

Version

0.2.3

License

MIT

Last publish

Collaborators

  • rstacruz