webasm-circle-table/index.html

27 lines
535 B
HTML
Raw Permalink Normal View History

2022-01-14 22:34:58 +01:00
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
</head>
<body>
<script type="module">
import init from "./pkg/circle_canvas.js";
async function run() {
await init();
}
run();
</script>
2022-02-13 00:52:04 +01:00
<style>
#circle_canvas{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
</style>
2022-02-13 14:48:00 +01:00
<canvas id="circle_canvas" height="800" width="800"></canvas>
2022-01-14 22:34:58 +01:00
</body>
</html>