Typed.js

Typed.js is a library that types out text, allowing you to display more content within a single sentence.

Example

Method Description
strings {string} The entered text is displayed.
type-speed {number} type speed in milliseconds
loop {boolean} loop strings
backDelay {number} backDelay time before backspacing in milliseconds
startDelay {number} startDelay time before typing starts in milliseconds
backSpeed {number} backSpeed backspacing speed in milliseconds

usebootstrap is

vue
<template>
 <p>
  usebootstrap is
  <Typed
   class="text-primary fw-semibold"
   :strings="['powerful.', 'extensible.', 'feature-packed.']"
   :type-speed="60"
   :loop="true"
   :back-speed="25"
   :back-delay="1500"
  />
 </p>
</template>