14. Februar 2023
Background-Video
Mit folgendem Code lassen sich sich Videos als Hintergrund darstellen:
<video autoplay muted loop playsinline class="bgvideo">
<source src="video/loremipsum.mp4" type="video/mp4">
</video>
Code-Sprache: JavaScript (javascript)
.bgvideo {
position: absolute;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
width: 100%;
height: 100%;
background-size: 100% 100%;
background-color: black;
background-position: center center;
background-size: contain;
z-index: 0;
object-fit: cover;
}
Code-Sprache: CSS (css)
Hier geht´s zur Demo: www.fbnfrtg.de/demo/backgroundvideo.html