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
- Host: GitHub
- URL: https://github.com/gwendall/meteor-jquery-animation-callback
- Owner: gwendall
- Created: 2015-04-29T15:53:37.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-03T22:07:37.000Z (about 10 years ago)
- Last Synced: 2025-03-18T05:56:56.111Z (3 months ago)
- Language: JavaScript
- Size: 113 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.");
});
```