Bootstrap 带有响应式 HTML5 视频的轮播?

Bootstrap carousel with responsive HTML5 videos?

我正在尝试用视频制作轮播。使用图像效果很好,即使在移动视图中图像也能响应。但是对于视频,宽度是响应式的,而不是高度。基本上我想用旋转木马图像但用视频实现相同的效果。我在网上尝试了很多技巧,但 none 正在这样做。我的视频是 1024/552px

尽我所能 fiddle。您可以看到,如果您以较小的宽度加载 fiddle,它会保持相同的高度并且没有响应,但 carousel/video 的宽度是(尽管它会裁剪两侧的视频)。它没有与图像相同的行为。正如您将看到的,我在第二张幻灯片中包含了一张图片,以进一步说明我的问题。

https://jsfiddle.net/687bsb21/1/

代码如下:

<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
 <ol class="carousel-indicators">
        <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
  <li data-target="#carousel-example-generic" data-slide-to="1"></li>
      </ol>

      <!-- Wrapper for slides -->
      <div class="carousel-inner" role="listbox">            

        <div class="item active">
             <div align="center">
               <video autoplay loop>
                 <source src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4" width="1024" height="552" type="video/mp4">
                 Your browser does not support the video tag.
              </video>
          </div>
             <div class="carousel-caption">
              <h3>hello</h3>
              <p>hello</p>
            </div>
          </div> 
            <div class="item">
          <img src="http://dummyimage.com/1024x552/000/fff" class="img-responsive" alt="asfds">
          <div class="carousel-caption">
              <h3>hello</h3>
              <p>hello.</p>
            </div>
        </div>
          <a class="left carousel-control" href="#carouselHelp" role="button" data-slide="prev">
        <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
        <span class="sr-only">Previous</span>
      </a>
      <a class="right carousel-control" href="#carouselHelp" role="button" data-slide="next">
        <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
        <span class="sr-only">Next</span>
      </a>
</div>

感谢您的帮助。

添加你的css,

video{
width:100%
}

也可以将 width/height 直接添加到标签中:

<video autoplay loop width="1024" height="552">

问候。

这是最佳解决方案:

<div class="container">
  <video><source src="video.mp4" type="video/mp4"></video>
</div>

.container{
  position: relative;
  width: 100%
}
.container video{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);                            
}