1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-15 06:52:34 +02:00
ScreenPlay/ScreenPlayWallpaper/index.html

38 lines
1.1 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
video {
2018-11-27 18:53:30 +01:00
position: absolute;
width: 100%;
height: 100%;
object-fit: fill;
overflow: hidden;
}
body, html{
margin: 0px;
padding: 0px;
overflow: hidden;
background: transparent;
}
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;
}
</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%">
</video>
</body>
</html>