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 was 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 ability to have a
completecallback when the animation is done would be quite handy.startcould also be useful.