我有一个功能,我想在任何手持设备(平板电脑,手机)上禁用。我已经设置了大于1200px的任何东西,但想知道这是否是最好的方式...想知道我是否应该针对移动设备而不是更大的屏幕或......?
我知道有几个类似的问题,我已经阅读了几个小时但是想要了解我的具体代码。
注意,我使用的是媒体查询,但它们无法在此处使用。
非常感谢, 苏珊
ShowImageZoomer = false;
$(document).ready(function() {
var current_width = $(window).width();
if(current_width > 1200)
$(".QuickView").quickview({
buttonText: "%%GLOBAL_QuickViewButtonText%%",
buttonColor: "%%GLOBAL_QuickViewButtonColor%%",
gradientColor: "%%GLOBAL_QuickViewGradientColor%%",
textColor: "%%GLOBAL_QuickViewTextColor%%"
});
});