我有一个小代码
$(".example8").colorbox({width:"50%", inline:true, href:"#inline_example1"});
它是灯箱的ajax / jquery代码。在这里,我的宽度为50%。它适用于桌面。但在小型设备中,我需要100%的宽度。那么如何增加移动的宽度?我需要为桌面保留50%,并希望增加小设备的宽度。
答案 0 :(得分:1)
var screenSize = $(window).width();
if(screenSize<500){
$(".example8").colorbox({width:"90%"});
}