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;
|
|
|
|
}
|
|
|
|
body, html{
|
2019-03-10 21:20:55 +01:00
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
overflow: hidden;
|
2019-03-30 12:56:34 +01:00
|
|
|
background:black;
|
2018-08-20 15:18:56 +02:00
|
|
|
}
|
2018-12-15 21:30:59 +01:00
|
|
|
#errorMsg{
|
|
|
|
position: fixed;
|
2019-03-30 12:56:34 +01:00
|
|
|
top: 50%;
|
2018-12-15 21:30:59 +01:00
|
|
|
text-align: center;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100px;
|
|
|
|
z-index: 0;
|
|
|
|
color:white;
|
|
|
|
font-family: "Segoe UI, Roboto, Arial";
|
|
|
|
font-weight: lighter;
|
|
|
|
}
|
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>
|
2019-06-12 12:12:31 +02:00
|
|
|
<source id="videoSource" type="video/webm" oncontextmenu="return false;" width="100%" height="100%">
|
2018-08-20 15:18:56 +02:00
|
|
|
</video>
|
|
|
|
</body>
|
|
|
|
</html>
|