Typist is a jQuery plugin that allows you to animate text as if it were being typed onto the screen.
$('#terminal').typist({
height: 300
});
$('#terminal').typist('prompt')
.wait(1500)
.typist('type', 'greet')
.typist('echo', 'Hello, world!')See it in action at http://chartulo.us
This software is licensed under the MIT license. See the details in the file called LICENSE.
Pass in options when initializing your 'terminal' by passing in an object with the following properties.
-
heightTypist sets your div to be fixed height with overflow: hidden, so that text scrolls off the top like a terminal window. Useheightto set the desired height (just passes through to CSS). Integer number of pixels. -
widthSets a fixed width for your terminal element. Integer number of pixels. -
backgroundColorSet the color of the terminal element. Any string that's a valid color in CSS. -
textColorSet the text color. Any string that's a valid color in CSS. -
fontFamilySet the font family for the text in the terminal.
Initializes the terminal element.
Adds a prompt line and starts a cursor blinking.
Types text on a prompt line.
Prints out text as if it were the output of a command. Creates a new line.
Pauses animation for the specified number of milliseconds. If on a prompt line, cursor continues to blink.
Sets the speed of typing/echoing for commands that come afterwards