-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (75 loc) · 2.74 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Earth-Sun-Moon</title>
<style>
canvas {
display: block;
}
#container {
display: flex;
flex-wrap: wrap;
}
#controls {
margin-left: 20px;
}
.control-group {
margin-bottom: 10px;
}
</style>
</head>
<body>
<div id="container">
<canvas id="canvas" width="640" height="640"></canvas>
<div id="controls">
<div class="control-group">
scaleSun 0.1<input id="scaleSun" type="range" min="0.1" max="2" step="0.1"> 2
</div>
<div class="control-group">
rotationSpeedSun 0.001<input id="rotationSpeedSun" type="range" min="0.001" max="0.05" step="0.001"
value="0.01"> 0.05
</div>
<div class="control-group">
Clockwise<input id="clockwiseSun" type="checkbox" value="0">
</div>
<div class="control-group">
scaleEarth 0.1<input id="scaleEarth" type="range" min="0.1" max="2" step="0.1"> 2
</div>
<div class="control-group">
rotationSpeedEarth 0.001<input id="rotationSpeedEarth" type="range" min="0.01" max="0.1" step="0.001"
value="0.03"> 0.1
</div>
<div class="control-group">
Clockwise<input id="clockwiseEarth" type="checkbox" value="0">
</div>
<div class="control-group">
scaleMoon 0.1<input id="scaleMoon" type="range" min="0.1" max="2" step="0.1"> 2
</div>
<div class="control-group">
rotationSpeedMoon 0.001<input id="rotationSpeedMoon" type="range" min="0.001" max="0.1" step="0.001"
value="0.05"> 0.1
</div>
<div class="control-group">
Clockwise<input id="clockwiseMoon" type="checkbox" value="0">
</div>
<div class="control-group">
earthOrbitSpeed 0.005<input id="earthOrbitSpeed" type="range" min="0.005" max="0.05" step="0.005"
value="0.01"> 0.05
</div>
<div class="control-group">
Clockwise<input id="earthOrbitClockwise" type="checkbox" value="0">
</div>
<div class="control-group">
moonOrbitSpeed 0.01<input id="moonOrbitSpeed" type="range" min="0.01" max="0.1" step="0.01" value="0.04">
0.1
</div>
<div class="control-group">
Clockwise<input id="moonOrbitClockwise" type="checkbox" value="0">
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>