tunnel-racer/game.html

22 lines
603 B
HTML
Raw Normal View History

2022-01-30 10:45:49 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>three.js webgl - tunnel racer</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link type="text/css" rel="stylesheet" href="main.css">
<script src="/gyronorm.complete.min.js"></script>
</head>
<body>
<div id="info">
2022-01-30 11:02:00 +00:00
Score: <span id="score">0</span><br/>
2022-01-30 10:45:49 +00:00
<button id="set_head">Calibrate neutral position</button>
<p id="log"></p>
</div>
<button id="start">Start</button>
<script type="module" src="/game.js"></script>
</body>
</html>