You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 27, 2021. It is now read-only.
The ability to have a complete callback when the animation is done would be quite handy. start could also be useful.
var flip = new FLIP({
element: target,
easing: function (t) {
return t * t;
},
start: function(){ console.log('animating is starting'); },
complete: function(){ console.log('animation is done!'); }
});
The text was updated successfully, but these errors were encountered:
The ability to have a
complete
callback when the animation is done would be quite handy.start
could also be useful.The text was updated successfully, but these errors were encountered: