Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jquery-typewrite

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jquery-typewrite

Type character by character the content of an HTML element.

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

jquery-typewrite

Type the content of an HTML element, character by character

Why?

There's a few plugins out there allowing you to type some text character by character, however I haven't been able to find one which would allow my to type HTML elements along with the text. You can even nest the HTML elements inside and it will still work.

How?

It replaces all the HTML tags inside the element with a placeholder character. When finding this character whilst typing the text, it will insert the element and call .typewrite() on it recursively and wait until the context of the element is typed out to continue typing the rest of the text.

Usage

Install using bower: bower install jquery-typewrite
Or using npm: npm install jquery-typewrite
Or just by downloading the tarball

The .typewrite() function allows a callback which will be called once all the text has been typed.


	$("#my-novel").typewrite();

	$("#my-short-story").typewrite(function() { console.log('done'); });	

There is also a .stopTypewrite() which will render all the content immediately and call the callback if one has been set.


	$("#my-novel").stopTypewrite();

Options

options.delay

Type: Integer
Default: 60

The amount of time, in milliseconds, between each character.

options.placeholder

Type: String
Default:

The character used for replacing HTML tags. If you wish to use the default character in your text, you can choose your own by setting this option.
If you set this option don't forget to set it too if you call .stopTypewrite().


	$("#my-novel").typewrite({ delay: 180 }, function () {
		console.log("All the text has been typed");
	});

Changelog

  • 0.1.0 - First release

FAQs

Package last updated on 31 Mar 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc