File size: 2,459 Bytes
2337d23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
    <title>Solar System Explorer</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div id="ui-overlay">
        <div id="title-bar">
            <h1>☉ Solar System Explorer</h1>
        </div>
        <div id="controls">
            <button id="btn-reset" aria-label="Reset View" title="Reset View"></button>
        </div>
        <div id="toggle-panel">
            <div class="toggle-row">
                <label for="toggle-real-distance">Real Distance Scale</label>
                <input type="checkbox" id="toggle-real-distance">
            </div>
            <div class="toggle-row">
                <label for="toggle-real-size">Real Size Scale</label>
                <input type="checkbox" id="toggle-real-size">
            </div>
            <div class="toggle-row">
                <label for="toggle-orbits">Show Orbits</label>
                <input type="checkbox" id="toggle-orbits" checked>
            </div>
            <div class="toggle-row">
                <label for="toggle-labels">Show Labels</label>
                <input type="checkbox" id="toggle-labels" checked>
            </div>
            <div class="toggle-row">
                <label for="toggle-fulllight">Full Illumination</label>
                <input type="checkbox" id="toggle-fulllight">
            </div>
        </div>
        <div id="speed-control">
            <button id="btn-play-pause" aria-label="Play/Pause" title="Play/Pause"></button>
            <label for="speed-slider">Speed</label>
            <input type="range" id="speed-slider" min="0" max="2" step="0.05" value="1">
            <span id="speed-value">1.0x</span>
        </div>
        <div id="credit">Created by Andy Kong</div>
        <div id="planet-nav"></div>
        <div id="info-panel" class="hidden">
            <button id="close-info" aria-label="Close">&times;</button>
            <h2 id="info-name"></h2>
            <div id="info-body"></div>
        </div>
    </div>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/three@0.128.0/examples/js/controls/OrbitControls.js"></script>
    <script src="app.js"></script>
</body>
</html>