触摸滚动单击URL即可,除非滚动

时间:2019-02-06 17:24:29

标签: javascript jquery ios mobile

我有一个PWA,由于使用模态窗口而不得不使用touchstart事件使链接转到URL并无法打开Safai,并且以前的脚本不适用于带有URL的模态窗口。

我的问题是,即使您在链接/图标上滑动,使用下面的touchstart也会激活,并且我必须不能让它转到该人正在滑动/滚动的URL。有没有一种方法可以检查是否将页面移动超过X而不是转到URL并滚动屏幕?

这是我的jQuery代码。

$("#sidebar a, .stats-grid a").on("touchstart click", function() { 
    event.preventDefault();
    newLocation = this.href;
    $("#loadingdiv2").fadeIn("slow", newpage); 
});
function newpage() {
    window.location = newLocation;
}

0 个答案:

没有答案