简体   繁体   中英

How to increase light box width using ajax or jquery?

I have a small code

$(".example8").colorbox({width:"50%", inline:true, href:"#inline_example1"});

It is ajax / jquery code for light box. Here I have width 50%. It is ok for desktop. But in small device I need 100% width. So How to increase width for mobile ? I need to keep 50% for desktop and want to increse width for small device.

var screenSize = $(window).width();
if(screenSize<500){
  $(".example8").colorbox({width:"90%"});
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM