小程序安卓端touchmove从右向左滑动不灵敏
本来想做一个侧滑菜单,但是view绑定touchmove后从屏幕最右端向最左端滑动只能得到六个滑动数据,但是从中间向左划能得到十几个数据,本来还以为是自己的问题,困扰了我两天,苹果和模拟器不会 下面做了一个小测试 <view bindtouchmove="move" class="view1"></view> .view1{ position: fixed; width: 100%; height: 100%; background: red } move(e){ console.log("输出数据" + e.touches[0].pageX) },