26 lines
436 B
HTML
26 lines
436 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Pteropus</title>
|
|
<style>
|
|
#pteropus-canvas {
|
|
height: 100vh;
|
|
width: 100vh;
|
|
display: block;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas id="pteropus-canvas"></canvas>
|
|
<script type="module">
|
|
import init from '../pkg/pteropus.js';
|
|
|
|
async function run() {
|
|
await init();
|
|
}
|
|
|
|
run();
|
|
</script>
|
|
</body>
|
|
</html>
|