orbit/dev/research-shot.html

23 lines
887 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<base href="../" />
<title>Orbit — Research console (dev shot)</title>
<style>
html, body { margin: 0; height: 100%; background: #04060d; overflow: hidden; }
#game { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
</style>
<script src="lib/phaser.min.js"></script>
</head>
<body>
<div id="game"></div>
<script type="module" src="dev/research-shot.mjs"></script>
<!-- Holds the `load` event (when --screenshot fires) until the boot,
window-open, research-start and report paint have all landed.
Served by dev/slow-server.mjs. On a plain static server this is
just a 404 script — the shot still works, only the timing drifts. -->
<script defer src="/sleep?ms=7500"></script>
</body>
</html>