36 lines
812 B
HTML
36 lines
812 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Friendolls Splash</title>
|
|
<script>
|
|
document.addEventListener("contextmenu", function (e) {
|
|
e.preventDefault();
|
|
});
|
|
|
|
const urlParams = new URLSearchParams(window.location.search);
|
|
const debug = urlParams.get("debug") === "Y";
|
|
</script>
|
|
</head>
|
|
<body style="width: 100%; height: 100%">
|
|
<div id="splash"></div>
|
|
<script>
|
|
document.getElementById("splash").style.backgroundImage = debug
|
|
? 'url("/splash-dev.jpeg")'
|
|
: 'url("/splash.jpg")';
|
|
</script>
|
|
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
}
|
|
#splash {
|
|
background-size: cover;
|
|
background-position: center;
|
|
width: 800px;
|
|
height: 400px;
|
|
}
|
|
</style>
|
|
</body>
|
|
</html>
|