mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-22 10:42:29 +01:00
24 lines
766 B
HTML
24 lines
766 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
video {
|
||
|
object-fit: fill;
|
||
|
overflow: hidden;
|
||
|
height: 100%;
|
||
|
}
|
||
|
body, html{
|
||
|
margin: 0px;
|
||
|
padding: 0px;
|
||
|
overflow: hidden;
|
||
|
background:orange;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<video id="videoPlayer" oncontextmenu="return false;" width="100%" height="100%" loop muted autoplay>
|
||
|
<source id="videoSource" src="https://www.aimber.net/walk.webm" type="video/webm" oncontextmenu="return false;" width="100%" height="100%"> Your browser does not support the video tag.
|
||
|
</video>
|
||
|
</body>
|
||
|
</html>
|