NOT A TYPO

This commit is contained in:
Daniel Eden 2014-02-25 07:48:53 -08:00
parent 8897f6e799
commit 53ac17b2a8
1 changed files with 6 additions and 0 deletions

View File

@ -20,6 +20,12 @@ $('#yourElement').addClass('animated bounceOutLeft');
You can also detect when an animation ends:
<!--
Before you make changes to this file, you should know that $('#yourElement').one() is *NOT A TYPO*
http://api.jquery.com/one/
-->
```javascript
$('#yourElement').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', doSomething());
```