1.0.4 • Published 1 year ago

typenet v1.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

typenet

Introduction

web typewriter effect, support chain call, easy to use. You can check out the online demo for details.

Use

Download

npm

npm install typenet

pnpm

pnpm install typenet

yarn

yarn add typenet

Used in the project

Basic use

import Typenet from "typenet"

new Typenet("#app", [options])
  .sleep(300)
  .type("I am a web ", [options])
  .sleep(300)
  .type("typing", { style: "color: red; " })
  .type(" plugin.")
  .start()

options Describes the parameters

property nametypedefault valuemeaning
speednumberunits for 100 milliseconds, is used to control the speed of text, such as typing speed, movement speed, etc.
stylestringnonewriting format and style of DOM elements consistent writing

API introduction

options configured in the constructor (Typenet) will be considered public, and options in the constructor will be used if the API is called without options. Finally, call the 'start' method to start the whole process. Currently support 'remove', 'type', 'sleep', 'start', 'move', 'line' and other methods of chain call, continuous maintenance...

type

Print the text, 'type(text: string, options)'

new Typenet("#app", [options]).type("i am typenet! ").start()

remove

remove(characters: number, options) '

new Typenet("#app", [options])
  .type("i am typenet! ")
  .remove(1) // Remove a character and get "i am typenet"
  .start()

move

move(characters: number, options), 'move(characters: number, options)', 'characters' can be positive (move to the right) and negative (move to the left).

new Typenet("#app", [options]).type("i am typenet! ").move(5).start()

sleep

To stop printing text, 'sleep(time: number)' takes milliseconds.

new Typenet("#app", [options])
  .sleep(2000)
  .type("i am typenet! ") // will wait two seconds before output
  .start()

line

line feed, 'line()'.

new Typenet("#app", [options])
  .sleep(2000)
  .type("i am typenet! ") // will wait two seconds before output
  .line()
  .type("thank you! ") // Continues this output with a newline
  .start()

Demo

todo...

Frequently Asked Questions

todo...

Get involved and contribute

Please read the CONTRIBUTING Guide before contributing.

Sponsorship

If you think this project is helpful to you and circumstances permit, you can give me a little support. In short, thank you very much for your support ~

License

MIT © coderlei

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago