1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-22 10:42:29 +01:00
ScreenPlay/ScreenPlayWindow/index.html

25 lines
762 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
video {
object-fit: fill;
overflow: hidden;
height: 100%;
2018-08-25 00:43:23 +02:00
background:black;
}
body, html{
margin: 0px;
padding: 0px;
overflow: hidden;
2018-08-25 00:43:23 +02:00
background:black;
}
</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.
</video>
</body>
</html>