如何在父窗口调整大小时调整iframe

How to resize iframe when parent window resizes

本文关键字:调整 iframe 小时 窗口      更新时间:2023-09-26

我认为这不是另一个"根据内容高度调整iframe大小"的问题。

我实际上想根据父窗口的大小动态地调整iframe的大小。对于JS小提琴爱好者,我在这里有一个例子

对于那些想要查看SO代码的人:

<div id="content">
<iframe src="http://www.apple.com" 
        name="frame2" 
        id="frame2" 
        frameborder="0" 
        marginwidth="0" 
        marginheight="0" 
        scrolling="auto" 
        allowtransparency="false">
</iframe>
</div>
<div id="block"></div>
<div id="header"></div>
<div id="footer"></div>
CSS:

body {
margin: 0px;
padding-top: 78px;
padding-right: 0px;
padding-bottom: 25px;
padding-left: 0px;
min-height: 0px;
height: auto;
text-align: center;
background-color: lightblue;
overflow:hidden;
}
div#header {
top: 0px;
left: 0px;
width: 100%;
height: 85px;
min-width: 1000px;
overflow: hidden;
background-color: darkblue;
}
div#footer {
bottom: 0px;
left: 0px;
width: 100%;
height: 25px;
min-width: 1000px;
background-color: darkblue;
}
iframe#frame2 {
margin: 40px;
position: fixed;
top: 80px;
left: 0px;
width: 200px;
bottom: 25px;
min-width: 200px;
}
div#block {
background-color: lightgreen;
margin: 40px;
position: fixed;
top: 80px;
left: 350px;
width: 200px;
bottom: 25px;
min-width: 200px;
}
@media screen {
body > div#header {
position: fixed;
}
body > div#footer {
position: fixed;
}
}

可能有一点奇怪的CSS -我从实际页面拼凑在一起。道歉。

正如你所看到的,当你调整窗口的大小时,绿色的div会相应地动态改变高度。我想知道的是,如果这可以与div左侧的iframe一起完成。

CSS可以单独实现吗?

我创建了一个新的jsfiddle,它可以为您提供所需的原始css。我没有广泛地测试跨浏览器,特别是在IE中。我希望IE8和ie9能支持,但我不敢说ie7能正常工作。

相关变化:

    /* This contains the iframe and sets a new stacking context */
div#content {
    position: fixed;
    top: 80px;
    left: 40px;
    bottom: 25px;
    min-width: 200px;
    background: black; 
        /* DEBUG: If the iframe doesn't cover the whole space,
           it'll show through as black. */
}
    /* Position the iframe inside the new stacking context
       to take up the whole space */
div#content iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

我想这就是你想要的。

首先,我将iframe包装在div中,并将iframe的宽度和高度设置为100%。

HTML

<div id="frameContainer"><iframe src="http://www.apple.com" name="frame2" id="frame2" frameborder="0" marginwidth="0" marginheight="0" scrolling="auto" onload="" allowtransparency="false"></iframe></div>
CSS

#frameContainer {
    margin: 40px;
    position: fixed;
    top: 80px;
    left: 0px;
    width: 200px;
    bottom: 25px;
    min-width: 200px;
}
iframe#frame2 { width: 100%; height:100% }

然后我添加了以下jQuery代码:

jsFiddle

$(function() {
    var widthRatio = $('#frameContainer').width() / $(window).width();
    $(window).resize(function() {
        $('#frameContainer').css({width: $(window).width() * widthRatio});
    }); 
});

可以设置iframe元素的宽度和高度为百分比。下面是一个宽度为75%的例子,当你增加/减少浏览器窗口的宽度时,它会动态变化:http://jsfiddle.net/fallen888/pkjEB/

这对我有用:

div#content iframe {width: 100%}