css樣式
.vid-wrap{ width:100%;background: #000; position:relative; padding-bottom:56.25%; /*需要用padding來維持16:9比例,也就是9除以16*/ height: 0; } .vid-wrap video{ position: absolute; top:0; left: 0; width: 100%; height: 100%
html
<div class="vid-wrap"> <video controls autoplay loop> <source src="" type="video/mp4"> </video> </div>
<div class="vid-wrap"> <video autoplay="autoplay" controls="controls" height="550" width="960"> <source src="xxx.mp4" type="video/mp4"/> </video> </div>
HTML視頻剪輯用什麽軟件自适應不自動播放視頻
<div class="vid-wrap"> <video controls="controls" height="550" width="960"> <source src="xxx.mp4" type="video/mp4"/> </video> </div>
html5 video視頻自适應手機大小原文鏈接:https://qipaiyuanmaxiazai.com/5009.html,轉載請注明出處~~~
評論0