微信小程序

小程序滚动视图



左右滑动手势
 var distanceX = event.changedTouches[0].pageX - this.startX;

   var distanceY = event.changedTouches[0].pageY - this.startY

   if (Math.abs(distanceX) > Math.abs(distanceY) && distanceX > 0) {

     console.log('往右滑动');

   } else if (Math.abs(distanceX) > Math.abs(distanceY) && distanceX < 0)      {

     console.log('往左滑动');

    } else {
     console.log('上下滑动');
   }

你可能感兴趣的:(微信小程序)