-2
我正在使用Visual Studio 2015設計網站。我能夠添加一張圖片作爲背景,然後寫上它,但它應該與視頻不同。如何在視頻中添加文本框?我是否需要將其設置爲背景?謝謝HTML視頻文本
我正在使用Visual Studio 2015設計網站。我能夠添加一張圖片作爲背景,然後寫上它,但它應該與視頻不同。如何在視頻中添加文本框?我是否需要將其設置爲背景?謝謝HTML視頻文本
當然,你正在尋找這比:
<div class="container">
<video id="video" width="770" height="882" onclick="play();">
<source src="video/Motion.mp4" type="video/mp4" />
</video>
<div class="overlay">
<p>Content above your video</p>
<form>
<p>Content Below Your Video</p>
<label for="input">Form Input Label</label>
<input id="input" name="input" value="" />
<button type="submit">Submit</button>
</form>
</div>
</div>
如果你想放的視頻之上的內容,你會使用某種定位:
.container { position:relative; }
.container video {
position:relative;
z-index:0;
}
.overlay {
position:absolute;
top:0;
left:0;
z-index:1;
}
這是你在找什麼? https://jsfiddle.net/b8g8chto/ 非常簡單的例子。 – 2016-12-04 14:49:21