如题:代码如下
//touchStart事件
p.ontouchstart=function(event) {
var touch = event.targetTouches[0];
startY = touch.pageY;
console.log(startY);
};
//touchmove事件
p.ontouchmove=function(event) {
var touch = event.targetTouches[0];
endY = touch.pageY;
var Y = endY - startY;
if(Y > 0) {
alert("向下");
} else if(Y < 0) {
alert("向上");
}
}```
至尊宝的传说
相关分类