Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/39.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery 颜色框打开时太宽_Jquery_Css_Colorbox - Fatal编程技术网

Jquery 颜色框打开时太宽

Jquery 颜色框打开时太宽,jquery,css,colorbox,Jquery,Css,Colorbox,我有一个颜色框,它显示的宽度也是css指示的两倍。一个例子是。单击任何一个图像,您将看到该框的大小约为其应有大小的两倍。这在FF和IE中是相同的。其中没有宽度为1200的。它为什么要这样做 这就是我给出颜色框代码的地方 <link media="screen" rel="stylesheet" href="colorbox/colorbox.css" /> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.

我有一个颜色框,它显示的宽度也是css指示的两倍。一个例子是。单击任何一个图像,您将看到该框的大小约为其应有大小的两倍。这在FF和IE中是相同的。其中没有宽度为1200的。它为什么要这样做

这就是我给出颜色框代码的地方

<link media="screen" rel="stylesheet" href="colorbox/colorbox.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript"></script>
<script src="colorbox/jquery.colorbox.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
    //Examples of how to assign the ColorBox event to elements
    $("a[rel='example1']").colorbox();
    $("a[rel='example2']").colorbox({transition:"fade"});
    $("a[rel='example3']").colorbox({transition:"none", width:"75%", height:"75%"});
    $("a[rel='example4']").colorbox({slideshow:true});
    $(".example5").colorbox();
    $(".example6").colorbox({iframe:true, innerWidth:425, innerHeight:344});
    $(".example7").colorbox({width:"80%", height:"80%", iframe:true});
    $(".example8").colorbox({width:"50%", inline:true, href:"#inline_example1"});
    $(".example9").colorbox({
        onOpen:function(){ alert('onOpen: colorbox is about to open'); },
        onLoad:function(){ alert('onLoad: colorbox has started to load the targeted content'); },
        onComplete:function(){ alert('onComplete: colorbox has displayed the loaded content'); },
        onCleanup:function(){ alert('onCleanup: colorbox has begun the close process'); },
        onClosed:function(){ alert('onClosed: colorbox has completely closed'); }
    });

    //Example of preserving a JavaScript event for inline calls.
    $("#click").click(function(){
        $('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
        return false;
    });
});
</script>

$(文档).ready(函数(){
//如何将ColorBox事件指定给元素的示例
$([rel='example1']);
$([a[rel='example2']);
$([a[rel='example3']).colorbox({transition:'none',width:'75%',height:'75%});
$([rel='example4']);
$(“.example5”).colorbox();
$(.example6”).colorbox({iframe:true,innerWidth:425,innerHeight:344});
$(“.example7”).colorbox({宽度:“80%”,高度:“80%”,iframe:true});
$(“.example8”).colorbox({width:“50%”,inline:true,href:“#inline_example1”});
$(“.example9”).colorbox({
onOpen:function(){alert('onOpen:colorbox即将打开');},
onLoad:function(){alert('onLoad:colorbox已开始加载目标内容');},
onComplete:function(){alert('onComplete:colorbox已显示加载的内容');},
onCleanup:function(){alert('onCleanup:colorbox已开始关闭过程');},
onClosed:function(){alert('onClosed:colorbox已完全关闭');}
});
//为内联调用保留JavaScript事件的示例。
$(“#单击”)。单击(函数(){
$('#click').css({“背景色”:“#f00”,“颜色”:“#fff”,“光标”:“继承”});
返回false;
});
});
这是生成颜色框中显示的图片的代码

<div class="gallerywrap_1">
    <a href="<?=$pic2?>" title="<?=$caption?>" rel="example3">
        <div class="gallery_1">
            <div class="galleryimg_1" style="background-image: url(<?=$pic?>)"></div>
        </div>
    </a>
</div>

颜色框javascript正在设置与屏幕分辨率相关的宽度。 /大小

尝试将其更改为像素宽度或降低百分比宽度


希望这会有所帮助。

颜色框javascript正在设置与屏幕分辨率相关的宽度。 /大小

尝试将其更改为像素宽度或降低百分比宽度

希望这能有所帮助

$("a[rel='example3']").colorbox({transition:"none", width:"75%", height:"75%"});