我不知道這是否可行。 我想在頂部標題部分播放背景視頻(不是正文背景視頻)。我有一個沒有100%擴大的視頻。html5視頻寬度不擴展100%
另外我想要一個靜態橫幅第一件事,你看到當訪問該網站,然後過渡(某種淡入淡出)的背景視頻。
https://jsfiddle.net/v6oo5eh5/1/
<style>
/* The only rule that matters */
#video-background {
/* making the video fullscreen */
position:fixed;
/* bottom: 0;*/
/* min-width: 100%;
min-height: 100%;*/
/*width:auto;
height: auto;*/
z-index: -100;
left:0;
float:left;
top:0;
width:1920px;
}
</style>
<video autoplay loop id="video-background" muted style="background:red; height:500px;">
<source src="https://s3.amazonaws.com/clientevents/FIPPUK001-HMNHDF76C7D/video/Fipp_Congress_2.mp4" type="video/mp4" align="left">
</video>
我不知道我怎麼能做到這一點。有沒有任何例子或暗示完成這件事?
感謝。
這很好。但延伸視頻以適應內容框。如何避免拉伸 –