微信公众号开发

微信小程序实现单机双击并存

本文主要是介绍微信小程序实现单机双击并存,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

wxml:

<view class="img-container" data-fileid="fileID11" bindtap="multipleTap" bindtouchstart="touchStart" bindtouchend="touchEnd">
            点击该区域上传答案
            <image class="display-img" src="{{fileID11}}" mode="widthFix" bindtouchstart='touchStartHandle'
             bindtouchmove='touchMoveHandle' bindload='load' 
            style="width: {{ touch.scaleWidth }}px;height: {{ touch.scaleHeight }}px" ></image>
          </view>

js:

// 单击或者双击触发的事件
   // 触摸开始时间
   touchStartTime: 0,
   // 触摸结束时间
   touchEndTime: 0,  
   // 最后一次单击事件点击发生时间
   lastTapTime: 0, 
   // 单击事件点击后要触发的函数
   lastTapTimeoutFunc: null, 
  /// 按钮触摸开始触发的事件
  touchStart: function(e) {
    this.touchStartTime = e.timeStamp
  },
 
  /// 按钮触摸结束触发的事件
  touchEnd: function(e) {
    this.touchEndTime = e.timeStamp
  },

  //实现单击双击并存
  multipleTap:function(e){
    var that = this
    var fileID = e.currentTarget.dataset.fileid
    // 控制点击事件在350ms内触发,加这层判断是为了防止长按时会触发点击事件
    if (that.touchEndTime - that.touchStartTime < 350) {
      // 当前点击的时间
      var currentTime = e.timeStamp
      var lastTapTime = that.lastTapTime
      // 更新最后一次点击时间
      that.lastTapTime = currentTime
      
      // 如果两次点击时间在300毫秒内,则认为是双击事件
      if (currentTime - lastTapTime < 300) {
        console.log("double tap")
        // 成功触发双击事件时,取消单击事件的执行
        clearTimeout(that.lastTapTimeoutFunc);
        //双击的时候放大图片
        if (that.data[fileID] != ''){
          wx.previewImage({
            current: that.data[fileID], // 当前显示图片的http链接
            urls: [that.data[fileID]] // 需要预览的图片http链接列表
        })
        }
        // wx.showModal({
        //   title: '提示',
        //   content: '双击事件被触发',
        //   showCancel: false
        // })
      } else {
        // 单击事件延时300毫秒执行,这和最初的浏览器的点击300ms延时有点像。
        that.lastTapTimeoutFunc = setTimeout(function () {
          console.log("tap")
          // wx.showModal({
          //   title: '提示',
          //   content: '单击事件被触发',
          //   showCancel: false
          // })
          that.chooseimage(e)
        }, 300);
      }
    }
  },
这篇关于微信小程序实现单机双击并存的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!