-1

所以我为我的网页使用了一个外部脚本

<script src="fullpage.js"></script>

但它会禁用网站上的滚动。在移动版本(完全不同)上,我需要禁用脚本才能使滚动工作。我怎样才能做到这一点?

4

1 回答 1

1

您需要首先检测用户是否正在从移动设备浏览,以便您可以使用此方法

function isMobileDevice() {
    return (typeof window.orientation !== "undefined") || (navigator.userAgent.indexOf('IEMobile') !== -1);
};

然后您可以使用 if 语句将脚本包装在文件中

// inside your fullpage.js file

if (!isMobileDevice()) { // check if it's not a mobile device
    // put your code here
}

我希望这有帮助 :)

于 2018-10-17T15:53:16.403 回答