39 lines
851 B
HTML
39 lines
851 B
HTML
<html>
|
|
<head>
|
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body,
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
#canvas {
|
|
width: 100vw;
|
|
height: 56.25vw; /* height:width ratio = 9/16 = .5625 */
|
|
background: pink;
|
|
max-height: 100vh;
|
|
max-width: 177.78vh; /* 16/9 = 1.778 */
|
|
margin: auto;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0; /* vertical center */
|
|
left: 0;
|
|
right: 0; /* horizontal center */
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas id="canvas"></canvas>
|
|
<script src="./kroz.js"></script>
|
|
<script>
|
|
window.addEventListener("load", async () => {
|
|
await wasm_bindgen("./kroz_bg.wasm");
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|