2018-08-20 15:18:56 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<style type="text/css">
|
|
|
|
video {
|
2018-11-27 18:53:30 +01:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-08-20 15:18:56 +02:00
|
|
|
object-fit: fill;
|
|
|
|
overflow: hidden;
|
2018-11-27 18:53:30 +01:00
|
|
|
background:black;
|
2018-08-20 15:18:56 +02:00
|
|
|
}
|
|
|
|
body, html{
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
2018-11-27 18:53:30 +01:00
|
|
|
overflow: hidden;
|
|
|
|
background:orange;
|
|
|
|
|
2018-08-20 15:18:56 +02:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2018-09-06 13:57:36 +02:00
|
|
|
<video id="videoPlayer" oncontextmenu="return false;" width="100%" height="100%" loop autoplay>
|
2018-08-25 00:43:23 +02:00
|
|
|
<source id="videoSource" src="" type="video/webm" oncontextmenu="return false;" width="100%" height="100%"> Your browser does not support the video tag.
|
2018-08-20 15:18:56 +02:00
|
|
|
</video>
|
|
|
|
</body>
|
|
|
|
</html>
|