关于小程序上canvas移动卡顿的解决方法
原文中文,约300字,阅读约需1分钟。发表于: 。在使用canvas做图片裁剪的时候, 偶尔出现卡顿情况,是移动事件向上冒泡导致的, 添加以下代码阻止冒泡行为: @touchmove.stop.prevent="()=>{}" <canvas id="canvas" type="2d" @touchstart="canvasTouch" @touchmove="canvasTouch" @touchend="canvasTouch"...
使用canvas裁剪图片时,移动事件冒泡可能导致卡顿。通过添加`@touchmove.stop.prevent="()=>{}"`可以阻止冒泡,解决问题。