Files
BetterSEQTA-Plus/public/backgrounds/background.html
T
2023-12-21 13:27:13 +11:00

30 lines
454 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Background Fetcher</title>
<style>
body {
margin: 0 !important;
}
video, img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
</style>
</head>
<body>
<!-- Container for the media -->
<div id="media-container"></div>
<script src="background.js"></script>
</body>
</html>