禁用移动设备的Nextgen灯箱效果?

时间:2012-12-21 21:09:30

标签: javascript wordpress

在移动设备上查看时,如何禁用nextgen wordpress插件上的灯箱效果?

以下是该项目:www.brendanbrowne.com

1 个答案:

答案 0 :(得分:0)

这是我的解决方案:

请记住,你需要jQuery 1.9.1或更低版本,因为据我所知1.9.1及更低版本仍然有jQuery浏览器(所有不赞成使用)。如果您使用的是jQuery 2.0,则需要将jQuery浏览器下载为插件。

var isiPad = /ipad/i.test(navigator.userAgent.toLowerCase());
if (isiPad)
{
    $('.ngg-gallery-thumbnail a').removeAttr('rel');
}

if(jQuery.browser.mobile)
{
    $('.ngg-gallery-thumbnail a').removeAttr('rel');
    //alert('You are using a mobile device!');
}