微信小程序官方文档有说明,disable-scroll="true" 可以阻止页面下拉和滚动。这里有个坑,disable-scroll在真机上如果要生效,那么要给canvas绑定一个触摸事件才能生效。

必须绑定三个事件真机才能捕获到

<canvas disable-scroll="true" bindtouchstart="touchStart" bindtouchmove="touchMove" bindtouchend="touchEnd" canvas-></canvas>

相关文章:

  • 2021-10-29
  • 2021-12-05
  • 2022-12-23
  • 2022-12-23
  • 2021-11-28
  • 2021-08-14
  • 2022-12-23
  • 2021-10-03
猜你喜欢
  • 2021-05-17
  • 2022-12-23
  • 2022-03-01
  • 2022-12-23
  • 2021-11-02
  • 2021-12-07
  • 2022-12-23
相关资源
相似解决方案