web-dev-qa-db-ja.com

YouTubeビデオをレスポンシブ幅に縮小する

YouTubeビデオをWebサイトに埋め込み、画面をタブレットまたは携帯電話のサイズに縮小すると、幅が約560pxで縮小しなくなります。これはYouTubeビデオの標準ですか、それともコードを小さくしてサイズを小さくできるものがありますか?

116
MattM

CSSを使用して、YouTubeビデオをレスポンシブにすることができます。 「videowrapper」のクラスを持つdivでiframeをラップし、次のスタイルを適用します。

.videowrapper {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}
.videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videowrapper divは、レスポンシブ要素内にある必要があります。ビデオが崩れないようにするには、.videowrapperのパディングが必要です。レイアウトに応じて、数値を微調整する必要がある場合があります。

257
magi182

Bootstrapを使用している場合、レスポンシブ埋め込みも使用できます。これにより、ビデオの応答性が完全に自動化されます。

http://getbootstrap.com/components/#responsive-embed

以下にいくつかのサンプルコードがあります。

<!-- 16:9 aspect ratio -->
<div class="embed-responsive embed-responsive-16by9">
  <iframe class="embed-responsive-item" src="..."></iframe>
</div>

<!-- 4:3 aspect ratio -->
<div class="embed-responsive embed-responsive-4by3">
  <iframe class="embed-responsive-item" src="..."></iframe>
</div>
26
illage4

私はレスポンシブなYouTubeビデオの受け入れられた回答でCSSを使用しました。2015年8月の初めにYouTubeがシステムを更新するまで、うまく機能しました。すべての動画をレターボックス化。上下に黒い帯。

サイズをいじくり回して、上部のパディングを取り除き、下部のパディングを56.45%に変更することに決めました。よく見えるようです。

.videowrapper {
    position: relative;
    padding-bottom: 56.45%;
    height: 0;
}
9
McNab

JQueryを使用したYouTubeおよびVimeo用の洗練されたJavascriptのみのソリューション。

// -- After the document is ready
$(function() {
  // Find all YouTube and Vimeo videos
  var $allVideos = $("iframe[src*='www.youtube.com'], iframe[src*='player.vimeo.com']");

  // Figure out and save aspect ratio for each video
  $allVideos.each(function() {
    $(this)
      .data('aspectRatio', this.height / this.width)
      // and remove the hard coded width/height
      .removeAttr('height')
      .removeAttr('width');
  });

  // When the window is resized
  $(window).resize(function() {
    // Resize all videos according to their own aspect ratio
    $allVideos.each(function() {
      var $el = $(this);
      // Get parent width of this video
      var newWidth = $el.parent().width();
      $el
        .width(newWidth)
        .height(newWidth * $el.data('aspectRatio'));
    });

  // Kick off one resize to fix all videos on page load
  }).resize();
});

埋め込みのみで使いやすい:

<iframe width="16" height="9" src="https://www.youtube.com/embed/wH7k5CFp4hI" frameborder="0" allowfullscreen></iframe>

または、Bootstrapのようなレスポンシブスタイルフレームワークを使用します。

<div class="row">
  <div class="col-sm-6">
    Stroke Awareness
  <div class="col-sm-6>
    <iframe width="16" height="9" src="https://www.youtube.com/embed/wH7k5CFp4hI" frameborder="0" allowfullscreen></iframe>
  </div>
</div>
  • Iframeの幅と高さに依存してアスペクト比を保持
  • 幅と高さにアスペクト比を使用できます(width="16" height="9"
  • ドキュメントの準備が整うまで待機してからサイズ変更します
  • ストリングの開始*=の代わりにjQueryサブストリング^=セレクターを使用します
  • 事前定義された要素の代わりに、ビデオiframe親から参照幅を取得します
  • Javascriptソリューション
  • CSSなし
  • ラッパーは不要

出発点の@Dampasに感謝します。 https://stackoverflow.com/a/33354009/1011746

7
mindriot

これは古いスレッドですが、 https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php で新しい答えを見つけました

以前のソリューションの問題は、ビデオコードの周りに特別なdivが必要なことです。これは、ほとんどの用途には適していません。特別なdivを使用しないJavaScriptソリューションを次に示します。

// Find all YouTube videos - RESIZE YOUTUBE VIDEOS!!!
var $allVideos = $("iframe[src^='https://www.youtube.com']"),

// The element that is fluid width
$fluidEl = $("body");

// Figure out and save aspect ratio for each video
$allVideos.each(function() {

    $(this)
    .data('aspectRatio', this.height / this.width)

    // and remove the hard coded width/height
    .removeAttr('height')
    .removeAttr('width');

});

// When the window is resized
$(window).resize(function() {

    var newWidth = $fluidEl.width();

    // Resize all videos according to their own aspect ratio
    $allVideos.each(function() {

        var $el = $(this);
        $el
        .width(newWidth)
        .height(newWidth * $el.data('aspectRatio'));

    });

// Kick off one resize to fix all videos on page load
}).resize();

// END RESIZE VIDEOS
1
Dampas

@ magi182のソリューションは堅実ですが、最大幅を設定する機能がありません。 YouTubeのサムネイルがピクセル化されているように見えるため、640ピクセルの最大幅が必要だと思います。

2つのラッパーを使用した私のソリューションは、私にとって魅力的なものです。

.videoWrapperOuter {
  max-width:640px; 
  margin-left:auto;
  margin-right:auto;
}
.videoWrapperInner {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 50%;
  padding-top: 25px;
  height: 0;
}
.videoWrapperInner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
<div class="videoWrapperOuter">
  <div class="videoWrapperInner">
    <iframe src="//www.youtube.com/embed/C6-TWRn0k4I" 
      frameborder="0" allowfullscreen></iframe>
  </div>
</div>

@ magi182の56%では、上部と下部に黒いバーが表示されるため、内側のラッパーのpadding-bottomも50%に設定しました。

1
Pascal Klein

Gistの詳細はこちらをご覧ください および 実際のサンプルはこちら

#hero { width:100%;height:100%;background:url('{$img_ps_dir}cms/how-it-works/hero.jpg') no-repeat top center; }
.videoWrapper { position:relative;padding-bottom:56.25%;padding-top:25px;max-width:100%; }

<div id="hero">
    <div class="container">
        <div class="row-fluid">
            <script src="https://www.youtube.com/iframe_api"></script>
            <center>
            <div class="videoWrapper">
                 <div id="player"></div>
            </div>
            </center>
            <script>
            function onYouTubeIframeAPIReady() { 
                player = new YT.Player('player', {
                   videoId:'xxxxxxxxxxx',playerVars: {  controls:0,autoplay:0,disablekb:1,enablejsapi:1,iv_load_policy:3,modestbranding:1,showinfo:0,rel:0,theme:'light' }
                } );
                resizeHeroVideo();
             }
             </script>
        </div>
    </div>
</div>

var player = null;
$( document ).ready(function() {
    resizeHeroVideo();
} );

$(window).resize(function() {
    resizeHeroVideo();
});

function resizeHeroVideo() {
    var content = $('#hero');
    var contentH = viewportSize.getHeight();
    contentH -= 158;
    content.css('height',contentH);

    if(player != null) {
        var iframe = $('.videoWrapper iframe');
        var iframeH = contentH - 150;
        if (isMobile) {
            iframeH = 163; 
        }
        iframe.css('height',iframeH);
        var iframeW = iframeH/9 * 16;
        iframe.css('width',iframeW);
    }
}

resizeHeroVideoは、YouTubeプレーヤーが完全に読み込まれた後(ページの読み込み時に機能しません)、ブラウザーウィンドウのサイズが変更されるたびに呼び出されます。実行すると、iframeの高さと幅が計算され、正しいアスペクト比を維持しながら適切な値が割り当てられます。これは、ウィンドウが水平または垂直にサイズ変更されても機能します。

0
davidcondrey

以前の回答へのクレジット https://stackoverflow.com/a/36549068/7149454

Boostrap互換で、コンテナの幅(この例では300px)を調整してください。

<div class="embed-responsive embed-responsive-16by9" style="height: 100 %; width: 300px; ">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/LbLB0K-mXMU?start=1841" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0"></iframe>
</div>
0
Nick Kovalsky