34 lines
987 B
HTML
34 lines
987 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<!-- Disable zooming: -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Integral Demonstration</title>
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<noscript>Please enable Javascript, this page uses both WebAssembly and Javascript to run.</noscript>
|
|
|
|
<canvas id="canvas"></canvas>
|
|
<div class="centered" id="loading">
|
|
<p style="font-size: 16px;">
|
|
Loading…
|
|
</p>
|
|
<div class="lds-dual-ring"></div>
|
|
</div>
|
|
|
|
<script type="module">
|
|
import init, { start } from "./integral_site.js";
|
|
|
|
async function run() {
|
|
await init();
|
|
document.getElementById("loading").remove();
|
|
start("canvas");
|
|
}
|
|
run();
|
|
</script>
|
|
</body>
|
|
</html>
|