码迷,mamicode.com
首页 > 其他好文 > 详细

在vue中beforeDestroy()中移除requestAnimationFrame方法启动的动画

时间:2020-06-22 11:03:25      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:loading   vue   技术   img   http   his   red   animation   lazy   

问题:在页面上添加了动画,切换页面后会报错,如下图:

技术图片

 

 报错是因为离开有动画的页面后,没有取消动画

// requestAnimationFrame方法启动的动画
this.timeIndex = requestAnimationFrame((time) => draw(time, canvas, ctx));

// 销毁前取消动画
beforeDestroy() {
    cancelAnimationFrame(this.timeIndex); 
},

 

在vue中beforeDestroy()中移除requestAnimationFrame方法启动的动画

标签:loading   vue   技术   img   http   his   red   animation   lazy   

原文地址:https://www.cnblogs.com/stella1024/p/13175599.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!