Files
canvas/orbits/src/index.html
2024-03-21 19:19:27 +01:00

42 lines
900 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Orbits</title>
<style>
html, body {
height: 100%;
margin: 0;
}
.container {
height: 100%;
}
.timeContainer {
position: absolute;
color: yellow;
top: 50px
}
.help {
position: absolute;
color: yellow;
top: 65px
}
</style>
</head>
<body>
<script type="module" src="js/main.js"></script>
<div class="container" id="container">
<div class="timeContainer">
Current time
<span id="currentTime"></span>
</div>
<span class="help">
R -> reset to 2024-03-17 <br>
F -> reset camera <br>
P -> toggle pause <br>
T -> restart trail <br>
N -> toggle names
</span>
</div>
</body>
</html>