moving orbits to directory

This commit is contained in:
Sheldan
2024-03-20 21:28:08 +01:00
parent ad8b454ea4
commit c9717fc037
9 changed files with 4 additions and 2 deletions

40
orbits/src/index.html Normal file
View File

@@ -0,0 +1,40 @@
<!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
</span>
</div>
</body>
</html>