29 lines
794 B
HTML
29 lines
794 B
HTML
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>TITLE</title>
|
|
<style>
|
|
html,
|
|
body,
|
|
canvas {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
background: black;
|
|
z-index: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<canvas id="glcanvas" tabindex='1'></canvas>
|
|
<!-- Minified and statically hosted version of https://github.com/not-fl3/macroquad/blob/master/js/mq_js_bundle.js -->
|
|
<script src="https://not-fl3.github.io/miniquad-samples/mq_js_bundle.js"></script>
|
|
<script>load("./target/wasm32-unknown-unknown/release/BeepSortMacroQuad.wasm");</script> <!-- Your compiled wasm file -->
|
|
</body>
|
|
|
|
</html>
|