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