“como escrever texto em vídeo em html” Respostas de código

como escrever texto em vídeo em 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>
Bad Bee

como escrever texto em vídeo em html

.container { position:relative; }
.container video {
    position:relative;
    z-index:0;
}
.overlay {
    position:absolute;
    top:0;
    left:0;
    z-index:1;
}
Bad Bee

Respostas semelhantes a “como escrever texto em vídeo em html”

Perguntas semelhantes a “como escrever texto em vídeo em html”

Mais respostas relacionadas para “como escrever texto em vídeo em html” em HTML

Procure respostas de código populares por idioma

Procurar outros idiomas de código