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
- Host: GitHub
- URL: https://github.com/multum/air-chars
- Owner: multum
- Created: 2017-09-03T13:41:56.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-03T13:48:53.000Z (almost 9 years ago)
- Last Synced: 2025-08-17T01:55:36.492Z (10 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 ]
} );
} );
```