60

CSS を使用して iFrame を に拡大縮小したいのですがwidth: 100%、高さは幅に比例して拡大縮小する必要があります。

<img>タグを使用すると、これは正常に機能します。

画像と iFrame の両方で、html で幅と高さが定義されています。

ここにいくつかの例があります:

<html>
    <style>
        #a{ width: 500px; }
        img{ width: 100%; height: auto }
    </style>
    <body>
        <div id="a">
            <img src="http://lorempixel.com/200/150/" width="200" height="150" />
        </div>
    </body>

これは画像ではうまく機能しますが、iFrame でも同じ動作が必要です。

<html>
    <style>
        #a{ width: 900px; background: grey;}
        iframe{ width: 100%; height: auto }
    </style>
    <body>
        <div id="a">
            <iframe width="560" height="315" src="http://www.youtube.com/embed/RksyMaJiD8Y" frameborder="0" allowfullscreen></iframe>
        </div>
    </body>

iFrame は 100% 幅でレンダリングされますが、画像のように高さに比例してスケーリングされません。

4

6 に答える 6

116

画像と iframe の大きな違いは、画像が縦横比を維持することです。画像と iframe を組み合わせると、レスポンシブ iframe になります。これがあなたの質問に答えてくれることを願っています。

たとえば、このリンクを確認してください: http://jsfiddle.net/Masau/7WRHM/

HTML:

<div class="wrapper">
    <div class="h_iframe">
        <!-- a transparent image is preferable -->
        <img class="ratio" src="http://placehold.it/16x9"/>
        <iframe src="http://www.youtube.com/embed/WsFWhL4Y84Y" frameborder="0" allowfullscreen></iframe>
    </div>
    <p>Please scale the "result" window to notice the effect.</p>
</div>

CSS:

html,body        {height:100%;}
.wrapper         {width:80%;height:100%;margin:0 auto;background:#CCC}
.h_iframe        {position:relative;}
.h_iframe .ratio {display:block;width:100%;height:auto;}
.h_iframe iframe {position:absolute;top:0;left:0;width:100%; height:100%;}

注: これは固定アスペクト比でのみ機能します。

于 2012-08-25T12:24:11.753 に答える
65

これはよりクリーンなアプローチだと思います。インラインheightwidthプロパティ(それを証明するためにフィドルでランダムな値を設定します)およびCSSmax-widthプロパティで動作します。

HTML:

<div class="wrapper">
    <div class="h_iframe">
        <iframe height="2" width="2" src="http://www.youtube.com/embed/WsFWhL4Y84Y" frameborder="0" allowfullscreen></iframe>
    </div>
    <p>Please scale the "result" window to notice the effect.</p>
</div>

CSS:

html,body        {height: 100%;}
.wrapper         {width: 80%; max-width: 600px; height: 100%; margin: 0 auto; background: #CCC}
.h_iframe        {position: relative; padding-top: 56%;}
.h_iframe iframe {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}

http://jsfiddle.net/7WRHM/1001/

于 2013-11-21T19:20:20.983 に答える
23

私はこのソリューションが一番好きです。シンプル、スケーラブル、レスポンシブ。ここでのアイデアは、ビデオの縦横比に設定された下のパディングを使用して、高さゼロの外部 div を作成することです。iframe は幅と高さの両方で 100% にスケーリングされ、外側のコンテナーを完全に埋めます。外側のコンテナは幅に応じて高さを自動的に調整し、内側の iframe はそれに従って自動的に調整されます。

<div style="position:relative; width:100%; height:0px; padding-bottom:56.25%;">
    <iframe style="position:absolute; left:0; top:0; width:100%; height:100%"
        src="http://www.youtube.com/embed/RksyMaJiD8Y">
    </iframe>
</div>

ここでの唯一の変数は、外側の div の padding-bottom 値です。アスペクト比 4:3 のビデオでは 75%、アスペクト比 16:9 のワイドスクリーン ビデオでは 56.25% です。

于 2015-09-16T21:47:33.853 に答える
8

ここでは、% の代わりにビューポート単位を使用できます。このような:

iframe {
    max-width: 100vw;
    max-height: 56.25vw; /* height/width ratio = 315/560 = .5625 */
}

デモ(サイズを変更して効果を確認)

body {
  margin: 0;
}
.a {
  max-width: 560px;
  background: grey;
}
img {
  width: 100%;
  height: auto
}
iframe {
  max-width: 100vw;
  max-height: 56.25vw;
  /* 315/560 = .5625 */
}
<div class="a">
  <img src="http://lorempixel.com/560/315/" width="560" height="315" />
</div>

<div class="a">
  <iframe width="560" height="315" src="http://www.youtube.com/embed/RksyMaJiD8Y" frameborder="0" allowfullscreen></iframe>
</div>

于 2015-02-08T10:43:49.227 に答える