35 lines
589 B
HTML
35 lines
589 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Gravity Simulator</title>
|
|
<meta name="viewport" content="width=device-width" />
|
|
<style>
|
|
body {
|
|
background-color: #000;
|
|
color: #8f8;
|
|
font-family: monospace;
|
|
font-size: 16pt;
|
|
overflow: hidden;
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
|
|
div[id=simulator] {
|
|
position: float;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
<script type="module">
|
|
import { Sim } from './simulator.js';
|
|
const sim = new Sim();
|
|
sim.init('simulator');
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="simulator"></div>
|
|
</body>
|
|
</html>
|
|
|