web-dev-qa-db-ja.com

どの画面解像度でもビデオを100%に適合させる

次のプロパティを持つビデオがあります。フレーム幅:1920およびフレーム高さ:1080。幅と高さを100%にして、画面全体を埋める必要があります。また、応答性も必要です。これまでのところ、私はこのコードを持っています:

<video class="hidden-xs hidden-sm hidden-md hidden-custom videosize embed-responsive-item" autoplay="autoplay" loop="loop">
    <source src="~/Videos/myvideo.mp4" type="video/mp4" />
</video>

css:

   .videosize {
    position:absolute;
    z-index:-1;
    top:0;
    left:0;
    width:100%; 
    height:100vh;
}

上記のコードでは、1680 x 1050の画面解像度に完全に適合しますが、他の解像度では、高さの100%を占め、幅が調整されて両側に空白が残ります。

何か案が ?ありがとう。

21
Qwerty

ここで良い解決策を見つけました: http://codepen.io/shshaw/pen/OVGWLG

したがって、CSSは次のようになります。

.video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%; 
  overflow: hidden;
}
.video-container video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%; 

  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;

  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

HTML:

<div class="video-container">
  <video>
    <source src="~/Videos/myvideo.mp4" type="video/mp4" />
  </video>
</div>
45
raumus

これで、object-fitプロパティを使用できます。このプロパティは、<img>および<video>要素。現在、すべての最新ブラウザーでサポートされています。

.videosize {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    object-fit: cover;
}
9
David

ビデオタグの高さを設定すると、問題が解決しました。

<video height="600" autoplay="true" loop="true" muted="true" plays-inline="" style="position: absolute; right: 0; top: 0; min-width:100%; z-index: -100; object-fit: cover;">
      <source src="assets/vid/grapes.mp4" type="video/mp4"> </video>
0
Michael Staples

Iframeを使用できますか?

/* Flexible iFrame */
 
.flexible-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
 
.flexible-container iframe,   
.flexible-container object,  
.flexible-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
<!-- Responsive iFrame -->
<div class="flexible-container">
<iframe src="URL" frameborder="0" style="border:0"></iframe>
</div>
0
mlegg