码迷,mamicode.com
首页 > 其他好文 > 详细

手指长按事件

时间:2019-01-11 18:06:26      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:console   add   clear   timeout   end   div   事件   and   fun   

clickIng(myDOM) //执行函数

function clickIng(target) {
var time = null;
target.addEventListener("touchstart",() =>{ //手指触摸执行
time = setTimeout(handler,1000)
});

target.addEventListener("touchend",() => { //手指离开执行
clearTimeout(time);
})
}

handler = () => { //长按
console.log("你长按了我")

手指长按事件

标签:console   add   clear   timeout   end   div   事件   and   fun   

原文地址:https://www.cnblogs.com/xm16/p/10256354.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!