We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice if there was onStart callback once the delay() was complete.
The text was updated successfully, but these errors were encountered:
Same wish. @jgranick Trying to work out on my own. https://github.com/buckle2000/actuate
Sorry, something went wrong.
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
No branches or pull requests
It would be nice if there was onStart callback once the delay() was complete.
The text was updated successfully, but these errors were encountered: