Create an event when one element is animated.
The idea is that running the event, this call a function to be run after each step of the animation.
example:
assuming that stepAnimate is the event.
- $ ('div # box').fadeIn ('slow').stepAnimate(function () {/ * code * /});
- $ ('div # box').slideUp('slow').stepAnimate(function () {/ * code * /});
- $ ('div # box').show('slow').stepAnimate(function () {/ * code * /});
function similar to the "step" of the method. animate ().
this event would be very good in the animated elements.