2018-12-23 18:42:30 +00:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
|
<head>
|
2018-12-23 23:15:18 +00:00
|
|
|
|
<title>Emgui – A experiment in an Immediate Mode GUI written in Rust</title>
|
2018-12-23 18:42:30 +00:00
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
html {
|
|
|
|
|
/* Remove touch delay: */
|
|
|
|
|
touch-action: manipulation;
|
|
|
|
|
}
|
|
|
|
|
body {
|
2018-12-23 23:15:18 +00:00
|
|
|
|
background: #000000;
|
2018-12-27 23:51:40 +00:00
|
|
|
|
}
|
|
|
|
|
html, body {
|
|
|
|
|
overflow: hidden;
|
2018-12-23 18:42:30 +00:00
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<script>
|
|
|
|
|
// The `--no-modules`-generated JS from `wasm-bindgen` attempts to use
|
|
|
|
|
// `WebAssembly.instantiateStreaming` to instantiate the wasm module,
|
|
|
|
|
// but this doesn't work with `file://` urls. This example is frequently
|
|
|
|
|
// viewed by simply opening `index.html` in a browser (with a `file://`
|
|
|
|
|
// url), so it would fail if we were to call this function!
|
|
|
|
|
//
|
|
|
|
|
// Work around this for now by deleting the function to ensure that the
|
|
|
|
|
// `no_modules.js` script doesn't have access to it. You won't need this
|
|
|
|
|
// hack when deploying over HTTP.
|
|
|
|
|
delete WebAssembly.instantiateStreaming;
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<!-- this is the JS generated by the `wasm-bindgen` CLI tool -->
|
2019-01-04 13:14:32 +00:00
|
|
|
|
<script src="emgui_wasm.js"></script>
|
2018-12-23 18:42:30 +00:00
|
|
|
|
|
|
|
|
|
<script src="frontend.js" type="module"></script>
|
|
|
|
|
|
|
|
|
|
<!-- TODO: make this cover the entire screen, with resize and all -->
|
2018-12-27 23:51:40 +00:00
|
|
|
|
<canvas id="canvas" width="1024" height="1024"></canvas>
|
2018-12-23 18:42:30 +00:00
|
|
|
|
</body>
|
|
|
|
|
</html>
|