在移动版本上禁用外部脚本



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

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

但它禁用了在网站上滚动。在移动版本(完全不同(上,我需要禁用脚本以使滚动工作。我该怎么做?

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

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
}

我希望这对:)有所帮助

相关内容

  • 没有找到相关文章

最新更新