1
0
Fork 0
wgpu-rs/index.html

31 lines
653 B
HTML
Raw Normal View History

2022-06-19 12:42:19 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2022-06-19 13:53:40 +02:00
<title>Tuto1</title>
2022-06-19 12:42:19 +02:00
</head>
<body>
<div id="wasm-example"></div>
<script type="module">
2022-06-19 13:53:40 +02:00
import init from "./pkg/tuto1.js";
2022-06-19 12:42:19 +02:00
init().then(() => {
console.log("WASM Loaded");
});
</script>
<style>
body {
background-color: #444;
2022-06-19 13:53:40 +02:00
margin: 0;
padding: 0;
2022-06-19 12:42:19 +02:00
}
canvas {
background-color: black;
}
</style>
</body>
</html>