# typed-text

> A jQuery plugin that animates text in an element to make it seem as if it is being typed.

Latest version **1.1.0** (published 2015-10-05) · MIT License license · 0 weekly downloads

## Install

```sh
npm install typed-text
pnpm add typed-text
yarn add typed-text
bun add typed-text
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2015-10-05 |
| First published | 2015-10-05 |
| Weekly downloads | 0 |
| License | MIT License |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Norberto Hernandez |
| Maintainers | Norberto Hernandez |
| Keywords | TypedText, jquery, plugin, jquery-plugin, ecosystem:jquery, typed, text, ui, user-interface, user, interface |

## Links

- npm: https://www.npmjs.com/package/typed-text
- Repository: https://github.com/Droid047/jquery-typedText
- Homepage: https://github.com/Droid047/jquery-typedText/
- Issues: https://github.com/Droid047/jquery-typedText/issues
- npm.io page: https://npm.io/package/typed-text

## Dependencies (1)

- [jquery](https://npm.io/package/jquery.md) >=1.4

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 1.1.0 (latest) — 2015-10-05

## README

# jQuery.TypedText
A jQuery plugin that animates text in an element to make it seem as if it is being typed.

# Version
1.1.0

#Download
You can download the latest version at the following link:
https://github.com/Droid047/jquery-typedText/releases/latest

# Usage
```html
<html>
  <head>
    <!-- This script tag will include the jQuery framework. -->
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
    <!-- This script tag will include the Typed Text UI plugin. -->
    <script type="text/javascript" src="/js/jquery.typedtext.js"></script>
  </head>
  <body>
    <!--This element will be the element that will display the text we want to animate with the effect. -->
    <div id="MyTypedText"></div>
    <script type="text/javascript">
      $(document).ready(function() {
        /**
         * The plugin takes 1 to 3 arguments; If only one argument is supplied it must be
         * a string. Or you could choose to customize the plugin's effect even further by
         * also using either or both of the other possible parameters.
         *
         * @param [string] - The text to animate the plugin should animate.
         * @param [int] - The amount of milliseconds between each letter being displayed. [OPTIONAL]
         * @param [function] - The function you would like the plugin to execute upon
         *                     successful completion of the text animation.
         **/
        $("#MyTypedText").typedText("This text was just typed!", 100, function() {
        	alert("The plugin has successfully typed the given text.");
        });
      });
    </script>
  </body>
</html>
```

# Example
If you'd like to try a working example you could visit the following link:
https://jsfiddle.net/Droid047/40tovd7q/

---
_Source: https://npm.io/package/typed-text · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
