在ipad上删除javascript

时间:2012-12-21 16:20:14

标签: javascript html css ipad parallax.js

我有一个视差滚动网站,我不想在iPad上工作。所以我想在iPad上删除我的parallax.js文件的链接。

如何在检测到设备时禁用视差滚动?

任何方向都会受到高度赞赏。

2 个答案:

答案 0 :(得分:0)

使用类似:

var is_ipad = navigator.userAgent.indexOf('iPad') > -1

然后不要附加激活视差的事件

答案 1 :(得分:0)

这是一个应该允许您捕获其他移动设备的线程:What is the best way to detect a mobile device in jQuery?

这是一个片段,但不要忽略许多其他有用的回复:

if( /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ) {
 // some code..
}