Scale iFrame css width 100% like an image

前端 未结 6 1457
悲&欢浪女
悲&欢浪女 2020-12-04 08:21

I want to scale an iFrame through CSS to width: 100%, and the height should scale proportionally to the width.

With an tag this

相关标签:
6条回答
  • 2020-12-04 08:59

    Big difference between an image and an iframe is the fact that an image keeps its aspect-ratio. You could combine an image and an iframe with will result in a responsive iframe. Hope this answerers your question.

    Check this link for example : 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%;}
    

    note: This only works with a fixed aspect-ratio.

    0 讨论(0)
  • 2020-12-04 08:59

    None of these solutions worked for me inside a Weebly "add your own html" box. Not sure what they are doing with their code. But I found this solution at https://benmarshall.me/responsive-iframes/ and it works perfectly.

    CSS

    .iframe-container {
      overflow: hidden;
      padding-top: 56.25%;
      position: relative;
    }
    
    .iframe-container iframe {
       border: 0;
       height: 100%;
       left: 0;
       position: absolute;
       top: 0;
       width: 100%;
    }
    
    /* 4x3 Aspect Ratio */
    .iframe-container-4x3 {
      padding-top: 75%;
    }
    

    HTML

    <div class="iframe-container">
      <iframe src="https://player.vimeo.com/video/106466360" allowfullscreen></iframe>
    </div>
    
    0 讨论(0)
  • 2020-12-04 09:00

    I suppose this is a cleaner approach. It works with inline height and width properties (I set random value in the fiddle to prove that) and with CSS max-width property.

    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/

    0 讨论(0)
  • 2020-12-04 09:03

    You could use viewport units here instead of %. Like this:

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

    DEMO (Resize to see the effect)

    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>

    0 讨论(0)
  • 2020-12-04 09:18

    @Anachronist is closest here, @Simone not far off. The caveat with percentage padding on an element is that it's based on its parent's width, so if different to your container, the proportions will be off.

    The most reliable, simplest answer is:

    body {
      /* for demo */
      background: lightgray;
    }
    .fixed-aspect-wrapper {
      /* anything or nothing, it doesn't matter */
      width: 60%;
      /* only need if other rulesets give this padding */
      padding: 0;
    }
    .fixed-aspect-padder {
      height: 0;
      /* last padding dimension is (100 * height / width) of item to be scaled */
      padding: 0 0 56.25%;
      position: relative;
      /* only need next 2 rules if other rulesets change these */
      margin: 0;
      width: auto;
    }
    .whatever-needs-the-fixed-aspect {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* for demo */
      border: 0;
      background: white;
    }
    <div class="fixed-aspect-wrapper">
      <div class="fixed-aspect-padder">
        <iframe class="whatever-needs-the-fixed-aspect" src="/"></iframe>
      </div>
    </div>

    0 讨论(0)
  • 2020-12-04 09:22

    I like this solution best. Simple, scalable, responsive. The idea here is to create a zero-height outer div with bottom padding set to the aspect ratio of the video. The iframe is scaled to 100% in both width and height, completely filling the outer container. The outer container automatically adjusts its height according to its width, and the iframe inside adjusts itself accordingly.

    <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>
    

    The only variable here is the padding-bottom value in the outer div. It's 75% for 4:3 aspect ratio videos, and 56.25% for widescreen 16:9 aspect ratio videos.

    0 讨论(0)
提交回复
热议问题