mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-17 17:45:17 +01:00
Correct jQuery example. Fixes #127
This commit is contained in:
parent
d5d0861aa7
commit
ee75b81e09
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ $('#yourElement').addClass('animated bounceOutLeft');
|
|||
You can also detect when an animation ends:
|
||||
|
||||
```javascript
|
||||
$('#yourElement').one('webkitAnimationEnd mozAnimationEnd oAnimationEnd animationEnd', doSomething());
|
||||
$('#yourElement').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', doSomething());
|
||||
```
|
||||
|
||||
You can change the duration of your animations, add a delay or change the number of times that it plays:
|
||||
|
|
Loading…
Reference in a new issue