var btn = document.querySelector('#btn');
btn.ontouchstart = function (e) {
var point = e.changedTouches[0];
this.strX = point.pageX;
this.strY = point.pageY;
this.isMove = false;
}
btn.ontouchmove = function (e) {
var point = e.changedTouches[0];
var chengeX = point.pageX - this.strX,
chengeY = point.pageY - this.strY;
this.chengeX = chengeX;
this.chengeY = chengeY;
if(Math.abs(chengeX) > 10 || Math.abs(chengeY) > 10){
this.isMove = true;
}
}
btn.ontouchend = function (e) {
var point = e.changedTouches[0];
if(!this.isMove) {
console.log('我是點擊操做--');
return;
}
var dir = null;
if(Math.abs(this.chengeX)> Math.abs(this.chengeY)) {
dir = this.chengeX < 0 ? 'left' : 'right';
}else {
dir = this.chengeY < 0 ? 'up' : 'down';
}
console.log(dir);
}
複製代碼