37

上にテキストを追加する際にヘルプが必要なので、テキストが HTML 5 ビデオに重なっています。また、フォーム入力とボタンを追加する必要があり、以下は HTML5 ビデオ コードです。

<video id="video" width="770" height="882" onclick="play();">
<source src="video/Motion.mp4" type="video/mp4" />
</video>
4

2 に答える 2

52

確かにあなたはこれ以上のものを探しています:

<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;
}
于 2012-05-02T22:06:06.323 に答える