标签:事件 media str 方式 function 单机 上下 左右 阻止冒泡
判断和滑动是两种触发方式
滑动分为四种,上下左右(swipeup,swipedown,swipeleft,swiperight)
点击分为两种,点击和双击,一般用单机(tap)
根据自己不同的需求进行相应的使用函数
在此我需要的是判断上下滑动和点击
触发事件的对象.addEventListener("tap",function(){
需要编辑的代码;
})
触发事件的对象.addEventListener("swipeup",function(e){
e.stopImmediatePropagation();//阻止冒泡事件
})
触发事件的对象.addEventListener("swipedown",function(e){
e.stopImmediatePropagation();//阻止冒泡事件
})
标签:事件 media str 方式 function 单机 上下 左右 阻止冒泡
原文地址:https://www.cnblogs.com/rockyjs/p/11641790.html