-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 2.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Marc's Solar System Page</title>
<script src="javascript/jquery-1.4.2.min.js"></script>
<script src="javascript/raphael-min.js"></script>
<script src="javascript/index.js"></script>
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<div id="menu">
<div>
<form id="settings">
<label>Time Scale (ms/day)</label><input id="time_scale" type="text" value="1000" size="10" /> ms/day<br/>
<label>Distance Scale (px/Mkm)</label><input id="distance_pixels" type="text" value="5" size="10" /> px / <input id="distance_mkm" type="text" value="1" size="10" /> million km<br/>
<label>Radius Scale (px/km)</label><input id="radius_pixels" type="text" value="1" size="10" /> px / <input id="radius_km" type="text" value="2440" size="10" /> km<br/>
<label> </label><input type="submit" value="Update"> Show Orbits? <input id="show_orbits" type="checkbox" />
</form>
</div>
<div>
<h4>Roll Over to Highlight:</h4>
<div>
<ul class="highlight">
<li id="mercury">Mercury</li>
<li id="venus">Venus</li>
<li id="earth">Earth</li>
<li id="mars">Mars</li>
</ul>
</div>
<div>
<ul class="highlight">
<li id="jupiter">Jupiter</li>
<li id="saturn">Saturn</li>
<li id="uranus">Uranus</li>
<li id="neptune">Neptune</li>
</ul>
</div>
</div>
<div id="presets">
<h4>Presets:</h4>
<input type="button" value="first">
<input type="button" value="second">
<input type="button" value="third">
</div>
<div class="clear"></div>
</div>
<div id="solar_system"></div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-5204727-1");
pageTracker._trackPageview();
} catch(err) {}</script>
</body>
</html>