wallitor/wallitor-gui/video/index.html

33 lines
725 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<style>
html,body{
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
background: transparent;
}
#player{
width: 100%;
height: 100%;
margin: 0;
padding: 0;
opacity: 0;
transition: .5s ease-in-out;
object-fit: cover;
}
</style>
</head>
<body>
<video id="player"></video>
<script type="module" src="./playback.ts"></script>
</body>
</html>