44 lines
893 B
HTML
44 lines
893 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>snivy</title>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
background: #000;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#canvas {
|
|
display: block;
|
|
width: auto !important;
|
|
height: auto !important;
|
|
max-width: 100vw;
|
|
max-height: 100vh;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas id="canvas" oncontextmenu="event.preventDefault()"></canvas>
|
|
<script>
|
|
var Module = {
|
|
canvas: (function() {
|
|
return document.getElementById("canvas");
|
|
})()
|
|
};
|
|
|
|
</script>
|
|
{{{ SCRIPT }}}
|
|
</body>
|
|
</html>
|