在移动设备上查看时,如何禁用nextgen wordpress插件上的灯箱效果?
以下是该项目:www.brendanbrowne.com
答案 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!');
}