Correct jQuery example. Fixes #127

This commit is contained in:
Daniel Eden 2014-01-31 13:44:15 +00:00
parent d5d0861aa7
commit ee75b81e09
1 changed files with 1 additions and 1 deletions

View File

@ -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: