在vue中beforeDestroy()中移除requestAnimationFrame方法启动的动画
Posted stella1024
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在vue中beforeDestroy()中移除requestAnimationFrame方法启动的动画相关的知识,希望对你有一定的参考价值。
问题:在页面上添加了动画,切换页面后会报错,如下图:
报错是因为离开有动画的页面后,没有取消动画
// requestAnimationFrame方法启动的动画
this.timeIndex = requestAnimationFrame((time) => draw(time, canvas, ctx));
// 销毁前取消动画
beforeDestroy() {
cancelAnimationFrame(this.timeIndex);
},
以上是关于在vue中beforeDestroy()中移除requestAnimationFrame方法启动的动画的主要内容,如果未能解决你的问题,请参考以下文章
android studio 中移除module和恢复module
viewController 在用于 UINavigationController 时从 [tabBarController viewControllers] 数组中移除