An open API service indexing awesome lists of open source software.

https://github.com/multum/air-chars

Animate typed characters in a Input. Demo: https://codepen.io/JoyZi/pen/BZaPMe
https://github.com/multum/air-chars

Last synced: 9 months ago
JSON representation

Animate typed characters in a Input. Demo: https://codepen.io/JoyZi/pen/BZaPMe

Awesome Lists containing this project

README

          

# Air Chars
Animate typed characters in a Input. Demo: https://codepen.io/JoyZi/pen/BZaPMe

### Settings

Option | Type | Default
------ | ---- | -------
duration | number | 1
upperLimit | number | 150
sizeInterval | array | [15, 80]

### [Demo](https://codepen.io/JoyZi/pen/BZaPMe)

### Инициализация после подключения самого плагина

```javascript
$( document ).ready( function () {
$( "input" ).airChars( {
duration: 0.8,
upperLimit: 200,
sizeInterval: [ 15, 80 ]
} );
} );
```