微信小程序 在canvas画布上划动,页面禁止滑动

要实现微信小程序 在canvas画布上划动,页面禁止滑动,不仅要设置disable-scroll="true",还要要给canvas绑定一个触摸事件才能生效。

<canvas canvas-id="myCanvas" class="myCanvas"  disable-scroll="false" bindtouchstart="touchStart" bindtouchmove="touchMove" bindtouchend="touchEnd">
</canvas>

关于canvas触摸事件,在canvas上一定要绑定三个触摸事件,真机才能响应到画布触摸的event。bindtouchstart/bindtouchmove/bindtouchend,只绑定两个或一个会导致真机获取不到canvas上的触摸事件。

猜你喜欢

转载自www.cnblogs.com/Super-scarlett/p/9365490.html
今日推荐