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

https://github.com/gwendall/meteor-jquery-animation-callback

Simplified jQuery animation callbacks for Meteor
https://github.com/gwendall/meteor-jquery-animation-callback

Last synced: 3 months ago
JSON representation

Simplified jQuery animation callbacks for Meteor

Awesome Lists containing this project

README

        

Meteor jQuery Animation Callback
================================

Simple callback for CSS3 animations with jquery

Installation
------------

``` sh
meteor add gwendall:jquery-animation-callback
```

Methods
-------

**$(selector).onAnimationEnd(callback)**
**$(selector).onTransitionEnd(callback)**
**$(selector).onAnimationOrTransitionEnd(callback)**

Example
-------

``` javascript
$(".item").onAnimationEnd(function() {
console.log("The animation ended on this element.");
});
```