gwendall:jquery-animation-callback

v0.1.2Published 10 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Meteor jQuery Animation Callback

Simple callback for CSS3 animations with jquery

Installation

meteor add gwendall:jquery-animation-callback

Methods

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

Example

1$(".item").onAnimationEnd(function() {
2  console.log("The animation ended on this element.");
3});