调整 元素到父div

问题描述 投票:23回答:4

有没有人能够成功地将video元素调整为父div?

我的视频元素包含一个带有ratio of 4:3的网络摄像头流。我想打破比率并将其调整为div大小。我尝试过以下方法:

  • 设置width and height 100%>这没有做任何事情,4:3仍然存在
  • 设置min-height and min-width 100%>这使视频调整大小到溢出div的东西
  • position:absolute, bottom, top, left and right: 0px也超过了父div
  • 使用javascript获取父div的高度和宽度,然后为视频设置:无效,4:3比率仍然存在,没有大小更改。

怎么做?

编辑:感谢Gaurav的详细回复。看起来不错,我希望它对我有用。

.parentDiv // Results in around 400x400 pixels for me
{
    position: absolute;
    top: 11px;
    right: 10px;
    left: 10px;
    height: -webkit-calc(50% - 18px);
    height: calc(50% - 18px); 
    display: block;
} 

我的视频元素在那里,我给了你的CSS解决方案。不幸的是它只变白了。我的父母Div css可以与此有关吗?

编辑2:这是HTML:

<div class="parentDiv"> 
    <video class="cam_video" autoplay></video>                      
</div>

这主要是它。视频的src属性设置为我的网络摄像头流。

编辑3:

如果我右键单击并检查此屏幕截图https://s22.postimg.cc/th4ha8nmp/ratio2.png中的白色(现为红色潦草)部分,Chrome会向我显示白色也属于流。

似乎网络摄像头的流在顶部和底部都带有白色条纹。这太烦人了。

css html5 video
4个回答
24
投票

1)仅限CSS

Demo

HTML

<div class="wrapper">
  <video class="videoInsert">
  <source src="http://www.w3schools.com/html/movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
  Your browser does not support the video tag.
 </video>
</div>

CSS

.videoInsert {
    position: absolute; 
    right: 0; 
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    width: auto; 
    height: auto; 
    z-index: -100;
    background-size: cover;
    overflow: hidden;
}

2)jQuery

Demo

HTML

<div id="video-viewport">
    <video autoplay preload width="640" height="360">
        <source src="https://s3.amazonaws.com/whiteboard.is/videos/bg-loop-new.mp4" />
    </video>
</div>

CSS

#video-viewport {
    position: absolute;
    top: 0;
    left:0;
    overflow: hidden;
    z-index: -1; /* for accessing the video by click */
}
body{
    margin:0;
}

jQuery的

从这个答案 - simulate background-size:cover on <video> or <img>

var min_w = 300; // minimum video width allowed
var vid_w_orig;  // original video dimensions
var vid_h_orig;

jQuery(function() { // runs after DOM has loaded

    vid_w_orig = parseInt(jQuery('video').attr('width'));
    vid_h_orig = parseInt(jQuery('video').attr('height'));
    $('#debug').append("<p>DOM loaded</p>");

    jQuery(window).resize(function () { resizeToCover(); });
    jQuery(window).trigger('resize');
});

function resizeToCover() {

    // set the video viewport to the window size
    jQuery('#video-viewport').width(jQuery(window).width());
    jQuery('#video-viewport').height(jQuery(window).height());

    // use largest scale factor of horizontal/vertical
    var scale_h = jQuery(window).width() / vid_w_orig;
    var scale_v = jQuery(window).height() / vid_h_orig;
    var scale = scale_h > scale_v ? scale_h : scale_v;

    // don't allow scaled width < minimum video width
    if (scale * vid_w_orig < min_w) {scale = min_w / vid_w_orig;};

    // now scale the video
    jQuery('video').width(scale * vid_w_orig);
    jQuery('video').height(scale * vid_h_orig);
    // and center it by scrolling the video viewport
    jQuery('#video-viewport').scrollLeft((jQuery('video').width() - jQuery(window).width()) / 2);
    jQuery('#video-viewport').scrollTop((jQuery('video').height() - jQuery(window).height()) / 2);
};

3)仅使用iframe css

Demo

HTML

<div class="wrapper">
    <div class="h_iframe">
        <iframe src="//www.youtube.com/embed/9KunP3sZyI0" frameborder="0" allowfullscreen></iframe>
    </div>
</div>

CSS

.h_iframe iframe {
  position:absolute;
  top:0;
  left:0;
  width:100%; 
  height:100%;
}

8
投票

您可以使用object-fit属性来解决此问题。 HTML:

<div class="parentDiv"> 
    <video class="cam_video" autoplay></video>                      
</div>

CSS:

.cam_video {
object-fit: fill;
}

这将使视频拉伸占据整个父div。


1
投票
 object-fit: cover;

这对我来说很有把戏。


-1
投票

这种格式帮助我获得了高分辨率BG视频所需的宽度。甚至解决比例问题。谢谢

<div > <center><video style="position: relative;width: 900px; height: 700px; object-fit: cover;" class="bg-wrap" autoplay muted loop id="myVideo" src="videos/Raindrops.mp4" type="video/MP4"></video></center> </div>

   ` <div style="position: absolute; top:200px; width:100%; height:auto; padding:50px 20px;background-color: rgba(128, 128, 128, 0.486);" class="content centered" style="object-fit: cover;">
        <center>
            <h1 style="font-size:700%;color:yellow;font-family: sans-serif;width:device-width">NIET</h1>
            <p>My belove college</p>


        </center>
    </div>`
© www.soinside.com 2019 - 2024. All rights reserved.