actuate
actuate copied to clipboard
feature request: onStart
It would be nice if there was onStart callback once the delay() was complete.
Same wish. @jgranick Trying to work out on my own. https://github.com/buckle2000/actuate
Maybe onStart() is a convenient, but currently there is a way to get what you want:
var onStart = function () {};
Actuate.timer(delayTime).onComplete(onStart);
Actuate.tween(target).delay(delayTime);
Also you can control precedence ( I suppose) - if you transpose the lines above, onStart() will be called after the targets properties initialization.
@T1mL3arn you are right