New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

autotyping

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

autotyping

This is a JavaScript library that allows you to easily and quickly implement a type writer effect on your website or application.

latest
Source
npmnpm
Version
1.2.6
Version published
Weekly downloads
20
185.71%
Maintainers
1
Weekly downloads
 
Created
Source

AutoTyping.js

New release, new features:

22 February 2021

  • new option - textDeleteOptions
  • new method - stop()

npm version

https://unsplash.com/photos/6rkJD0Uxois

This is a JavaScript library that allows you to easily and quickly implement a type writer effect on your website or application.

There are many options available for you that you may or may not include, the JavaScript AutoTyping library will definitely work for you.

Lightweight. Only 4.06kb - minified version.

AutoTyping DEMO

Installation

Just clone or download the zip of this GitHub repository

or via npm:

npm install --save autotyping

Setup

<!-- just AutoTyping.js or .min.js -->
<script src='path/to/AutoTyping.min.js'></script>

and in your custom.js or direct between

<script></script> tag in HTML add:

const myText = new AutoTyping({
  id: 'example',                   //Your HTML element id (string) - REQUIRED
  typeText: ['words','sentences'] //Your text (array with strings)
}).init();

Options

  • id: Your HTML element id (string) - REQUIRED
  • typeText: Your text (array with strings)
  • textColor: Color of Your text (string) *default('#000')
  • typeSpeed: Interval between each character (nummber) *default(100ms)
  • typeRandom: Random interval between each character (boolean) *default(false)
  • typeDelay: Delay interval between typing two texts (number) *default(100ms)
  • cursor: Character for cursor (string) *default('|')
  • cursorColor: Color of the cursor (string) *default('#000')
  • cursorSpeed: Interval of the cursor blinks (number) *default(300ms)
  • deleteSpeed: Interval of deleting text (number) *default(50ms)
  • deleteDelay: Delay interval before deleting text (number) *default(2000ms)
  • typeInfinity: Autotyping infinity or only one cycle (boolean) *default(true)
  • callBack: Callback function - triggered after every typing cycle (object) *default(null)
    • counter: Every typing cycle counter is reduced by 1, after 0 it is reset (number)
    • method: function(counter){...} Your function (function)
  • textDeleteOptions: deleting a text to a specific character, and typing a new sequel (object) *default(null)
    • (index of strings in "typeText" Array - Example 0 : {...}): (object)
      • deleteToChar: index of the characters of the selected string, where the writing new part of text beginning (number)
      • continueThis: a new piece of text to be written (string)

If you set a value for a color property to an empty string, the element will inherit the style from the parent element.

Methods

  • init() - start AutoTyping
  • stop() - stop AutoTyping after last triggered cycle

Example

const myText = new AutoTyping({
  id: 'example',                   //Your HTML element id (string) - REQUIRED
  typeText: ['words','sentences'], //Your text (array with strings) - REQUIRED
  textColor: '#dc3545',            //Color of Your text (string) *default('#000')
  typeSpeed: 50,                   //Interval between each character (nummber) *default(100ms)
  typeRandom: true,                //Random interval between each character (boolean) *default(false)
  typeDelay: 200,                  //Delay interval between typing two texts (number) *default(100ms)
  cursor: '/',                     //Character for cursor (string) *default('|')
  cursorColor: '#dc3545',          //Color of the cursor (string) *default('#000')
  cursorSpeed: 200,                //Interval of the cursor blinks (number) *default(300ms)
  deleteSpeed: 50,                 //Interval of deleting text (number) *default(50ms)
  deleteDelay: 2000,               //Delay interval before deleting text (number) *default(2000ms)
  typeInfinity: true               //Autotyping infinity or only one cycle (boolean) *default(true)
  callBack: {                      //Callback function - triggered after every typing cycle (object) *default(null)
    counter: 4                     //Every typing cycle counter is reduced by 1, after 0 it is reset (number)
    method: function(counter){...} //Your function (function)
  },
  textDeleteOptions: {             //deleting a text to a specific character, and typing a new sequel (object) *default(null)
    0: {                           //index of strings in "typeText" Array (key-number : value-object)
      deleteToChar: 2,             //index of the characters of the selected string, where the writing new part of text beginning (number)
      continueThis: "rld best"     //a new piece of text to be written (string)
    }
  }
}).init();

Keywords

autotyping

FAQs

Package last updated on 22 Feb 2021

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