mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-05 18:42:29 +01:00
322f0d7908
Fix some wallpaper flickering (most of)
38 lines
1.1 KiB
HTML
38 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
video {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: fill;
|
|
overflow: hidden;
|
|
}
|
|
body, html{
|
|
margin: 0px;
|
|
padding: 0px;
|
|
overflow: hidden;
|
|
background: transparent;
|
|
}
|
|
#errorMsg{
|
|
position: fixed;
|
|
top: 50%;
|
|
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>
|
|
<video id="videoPlayer" oncontextmenu="return false;" width="100%" height="100%" loop autoplay>
|
|
<source id="videoSource" type="video/webm" oncontextmenu="return false;" width="100%" height="100%">
|
|
</video>
|
|
</body>
|
|
</html>
|