deleted: beloit/menu.png new file: clay/menu.avi deleted: clay/menu.png modified: docker/entrypoint.sh modified: index.html deleted: st_marys/menu.png
32 lines
813 B
HTML
32 lines
813 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>kiosk-menu</title>
|
|
<style>
|
|
/* Ensure the media fills the entire screen without scrollbars */
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
background-color: black; /* Prevents white flash during load */
|
|
}
|
|
|
|
video {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: block;
|
|
object-fit: cover;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<video src="*LOCATION/menu.avi" muted="" autoplay="" loop=""></video>
|
|
|
|
<!-- <img src="*LOCATION/menu.png" alt="Menu Image"> -->
|
|
</body>
|
|
</html>
|