对于html编码,如何在网站背景中插入视频,例如:http://www.buildingengines.com/。我只需朝着正确的方向迈出一步。
答案 0 :(得分:0)
将z-index较低的视频作为内容放置,然后相应地定位内容。
video {
z-index: 0;
}
h1 {
z-index: 2;
position: fixed;
top: 20px;
left: 40px;
}

<video width="400" autoplay>
<source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<h1>Text</h1>
&#13;