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 had this code:
Animation.interrupt [ Animation.loop [ Animation.to [ Animation.rotate (Animation.turn 1) ] , Animation.set [ Animation.rotate <| Animation.turn 0 ] ] ] model.style
For a little spinner. The above results in one correct animation, and afterwards animations spinner only abruptly resets itself to 0 in jumps.
Using this:
Animation.interrupt [ Animation.loop [ Animation.toWith (Animation.speed { perSecond = 1 }) [ Animation.rotate (Animation.turn 1) ] , Animation.set [ Animation.rotate <| Animation.turn 0 ] ] ] model.style
(Note we set animation speed) fixes the problem.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I had this code:
For a little spinner. The above results in one correct animation, and afterwards animations
spinner only abruptly resets itself to 0 in jumps.
Using this:
(Note we set animation speed)
fixes the problem.
The text was updated successfully, but these errors were encountered: