Código de CSS - Vídeo como fondo de página con CSS

1.1
estrellaestrellaestrellaestrellaestrella(2)

Actualizado el 4 de Marzo del 2021 (Publicado el 8 de Octubre del 2019)gráfica de visualizaciones de la versión: 1.1
4.298 visualizaciones desde el 8 de Octubre del 2019
estrellaestrellaestrellaestrellaestrella
estrellaestrellaestrellaestrella
estrellaestrellaestrella
estrellaestrella
estrella

Añadido muted al <video> para que auto arranque (autoplay) al cargarse. Los navegadores impiden auto arrancar los vídeos con sonido.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Vídeo como fondo de página</title>
    <style>
    body {
        margin: 0;
    }
    video {
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        z-index: -100;
    }
 
    h1, h3, p {padding:0 20px;}
    </style>
</head>
<body>
 
    <video id="mivideo" autoplay="autoplay" controls muted>
        <source src="mov_bbb.ogg" type="video/ogg"></source>
        Tu navegador no soporta el elemento "video"
    </video>
 
    <h1>Vídeo como fondo de página</h1>
 
    <h3>Estás viendo un vídeo como fondo de página.</h3>
 
    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
 
</body>
</html>



Comentarios sobre la versión: 1.1 (2)

Imágen de perfil
8 de Octubre del 2019
estrellaestrellaestrellaestrellaestrella
Muy bueno y sencillo
Responder
Imágen de perfil
16 de Octubre del 2019
estrellaestrellaestrellaestrellaestrella
No ha dejado ningún comentario
Responder

Comentar la versión: 1.1

Nombre
Correo (no se visualiza en la web)
Valoración
Comentarios...
CerrarCerrar
CerrarCerrar
Cerrar

Tienes que ser un usuario registrado para poder insertar imágenes, archivos y/o videos.

Puedes registrarte o validarte desde aquí.

Codigo
Negrita
Subrayado
Tachado
Cursiva
Insertar enlace
Imagen externa
Emoticon
Tabular
Centrar
Titulo
Linea
Disminuir
Aumentar
Vista preliminar
sonreir
dientes
lengua
guiño
enfadado
confundido
llorar
avergonzado
sorprendido
triste
sol
estrella
jarra
camara
taza de cafe
email
beso
bombilla
amor
mal
bien
Es necesario revisar y aceptar las políticas de privacidad

http://lwp-l.com/s5569