我的代码在手指滑动手势上运行良好,即如果我滑动手指,它会触发事件并调用 nextMonth() 函数。现在有什么方法可以检查我是否向上和向下滑动,以便我可以在两个不同的手势上调用两种不同的方法。
var myGesture = new MSGesture();
var v = this.element.querySelector(".bartouch");
myGesture.target = v;
v.addEventListener("MSGestureEnd", handleListner,false);
v.addEventListener("MSPointerDown", handleListner, false);
function handleListner(evt) {
if (evt.type == "MSPointerDown")
{
myGesture.addPointer(evt.pointerId);
return;
}
that.nextMonth();
}