Typing Flow Docs
  • Introduction
    • Get started
    • Configuration
    • Commands
      • text
      • backspace
      • del
      • cursorLeft
      • cursorRight
      • delay
      • home
      • end
    • Examples
  • Features
    • Renderers
    • Hooks
  • Plugins
    • chain
Powered by GitBook
On this page
  1. Introduction

Commands

You can create a flow with the commands method. It accepts an array of commands.

new TypingFlow({
  selector: ".test",
  renderer: browserRenderer(),
}).commands([
  // array of commands
]);

Supported commands:

  • text

  • backspace

  • del

  • cursorLeft

  • cursorRight

  • delay

PreviousConfigurationNexttext

Last updated 3 months ago