-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (56 loc) · 1.48 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
<title>Jupiter</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="main.js" type="text/javascript"></script>
</head>
<body>
<!-- planets/satellites -->
<div id="Jupiter"></div>
<div id="satellites">
</div>
<!-- Orbit Bounding Box -->
<div id="orbits">
</div>
<!-- other -->
<div id="ref"></div>
<div id="parallax"></div>
<div id="mouseboundary"></div>
<!-- UI -->
<header>
<div>Io, Europa, Ganymede and Callisto</div>
</header>
<!-- controls -->
<div id="display">
<div id="in">
<input type="text" id="ut" placeholder="time (0)"><br>
<input type="text" id="uts" placeholder="time scale (5)"><br>
<input type="text" id="uvs" placeholder="visual scale (12)"><br>
<input type="text" id="urot" placeholder="rotation (0)">
</div>
<span id="CurrentTime"></span>
</div>
<main>
<div id="tablediv"></div>
<br>
<p>
time scale in hours per second
</p>
<p>
This is an attempt to simulate the movement of the Galilean
moons. Values calculated are approximations and values used
might be wrong or inaccurate.
</p>
<p>
Controls:<br>
Arrow Keys - rotation<br>
Enter - apply values from input boxes<br>
Insert - line up all satellites with each other<br>
End - toggle background effect<br>
Page Down - toggle opacity change
</p>
</main>
</body>
</html>