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
例如一个圆形,默认为红色,对该圆形执行动画:
const circle = new Circle({ style: { cx: 300, cy: 200, r: 100, fill: 'red', }, }); const animation = circle.animate( [{ fill: 'blue' }, { fill: 'green' }], 1000 ); animation.cancel();
期望调用 animation.cancel() 后图形重置为红色,而非蓝色
animation.cancel()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
例如一个圆形,默认为红色,对该圆形执行动画:
期望调用
animation.cancel()
后图形重置为红色,而非蓝色The text was updated successfully, but these errors were encountered: