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
I want to make the animations start a bit later after they got in viewport. Any option to set a delay for each animation?
The text was updated successfully, but these errors were encountered:
This was discussed in #8 issue.
Here is a snippet for you if you also want to add a delay:
var el = $('#circle'), _timeout, _delay = 500; el.appear({ force_process: true }); el.on('appear', function() { _timeout = setTimeout(function() { el.circleProgress({ value: 0.7 }); }, _delay); }); el.on('disappear', function() { clearTimeout(_timeout); });
Sorry, something went wrong.
I believe my snippet solves the problem. I'm closing this ticket. Feel free to reopen it
No branches or pull requests
I want to make the animations start a bit later after they got in viewport. Any option to set a delay for each animation?
The text was updated successfully, but these errors were encountered: