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
Why does my animation pause when clicked despite isPaused={false} and isStopped={false}?
<Lottie options={{ loop: true, animationData: tunnelVision, rendererSettings: { preserveAspectRatio: 'xMidYMid slice' } }} height={'100%'} width={'100%'} isStopped={false} isPaused={false}/>
The text was updated successfully, but these errors were encountered:
There is an undocumented property isClickToPauseDisabled that you must set to true. Try this:
isClickToPauseDisabled
true
<Lottie options={{ loop: true, animationData: tunnelVision, rendererSettings: { preserveAspectRatio: 'xMidYMid slice' } }} isClickToPauseDisabled={true} height={'100%'} width={'100%'} isStopped={false} isPaused={false}/>
Sorry, something went wrong.
Perfect - thanks!
No branches or pull requests
Why does my animation pause when clicked despite isPaused={false} and isStopped={false}?
The text was updated successfully, but these errors were encountered: