如何制作全高的视频

时间:2015-06-03 06:24:34

标签: jquery html html5 twitter-bootstrap css3

我需要你的帮助才能制作完整高度的视频。虽然,div大小约为50%,当我制作我的视频固定位置时,它就像完整的背景视频,但我想让它适合我的div全高。

看看我想要的Here

您可以查看我的视频HTML代码



 <div class="video">
   <div id="video-holder" style="width:100%; position: absolute; height: auto !important; max-height:100%;">
	<video id="video" style="width:100%; height:100%;">
		<source src="http://www.w3schools.com/html/movie.ogg" type="video/ogg">
            
	</video>
   </div>
</div>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:1)

您是否为视频代码尝试了以下CSS?:

{
  width: auto;
  height: 100%;
  position: fixed;
}

鉴于您提到的示例,这似乎将视频置于100%的高度。如果这不是您所需要的,请给我们一些更详细的解释。