所以我为我的网页使用了外部脚本
<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
}
我希望这对:)有所帮助