js 在一个div盒子 长按事件 短时间按 及滑动键 区分

22 篇文章 0 订阅
6 篇文章 0 订阅

 <div :class="card“  :style="{'margin-top':index>0?'2rem':'1rem'}" @touchstart="gotouchstart(item.id)"  @touchend="gotouchend(item.id)"></div>

data(){
 return{

        timeOut:null,      

}
}

 // 手指按下事件

      gotouchstart(id) {

        window.isClick = true

        clearTimeout(this.timeOut)

        this.timeOut = setTimeout(()=>{

          console.log('长按事件',id)

          this.delectUserDrugsRemindNew(id);

          window.isClick = false

        }, 1000)

      },

      gotouchend(id) {

        if (window.isClick) {

          this.editWarn(id)

          console.log('点击事件',id)

        }

      },

      gotouchmove(id) {

        console.log('移动事件')

        window.isClick = false

      },

 // 项目销毁前清除定时器

    beforeDestroy() {

      clearTimeout(this.timeOut)

    },



第二种

 <div @touchstart="down(item.id)" @touchend="up(item.id)"  @click="clickEvent(item.id)" />

                

// 手指按下事件

      down(id) {

        this.timeOut = setTimeout(()=>{

            console.log("长按事件");

             this.delectUserDrugsRemindNew(id);

            this.isClick = false;

        },1000)

      },

       //手释放,如果在500毫秒内就释放,则取消长按事件,此时可以执行onclick应该执行的事件

      up(id) {

        clearTimeout(this.timeOut);

          //鼠标释放时让lock异步执行,setTimeout因为异步任务,所以会放到任务队列最后执行,让click事件先执行了

          setTimeout(()=>{

             console.log("点击事件");

              this.isClick = true;

          })

      },

      clickEvent(id){

         this.editWarn(id)

        console.log('点击跳转');

      },

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值