我正在努力使用这个Javascript:
width = screen.width * .75;
height = screen.height * .75;
$(".colorbox").colorbox({
width:"800px",
height:"600px",
iframe:true,
scrolling:false});
我试图将宽度和高度的值分别放入800和600个点。
答案 0 :(得分:3)
这很容易解决:
var width = screen.width * .75;
var height = screen.height * .75;
$(".colorbox").colorbox({
width: width,
height: height,
iframe: true,
scrolling: false});
(只是附注,在您的变量声明之前放置var
,否则它们将变为全局,可能是无意的)。
答案 1 :(得分:1)
Colorbox实际上支持将宽度指定为整数或单位..
所以,
$(".colobox").colorbox({
"width": width,
"height": height
});