-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproxima.html
96 lines (65 loc) · 3.53 KB
/
proxima.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
84
85
86
87
88
89
90
91
92
93
94
95
<! DOCTYPE html >
<html >
<head >
<link rel ="stylesheet" href ="page.css "/>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
</head >
<body class="animate__animated animate__fadeIn">
<div class="grid-container">
<div class="nothingleft"></div>
<div class="header">Tactical Grace</div>
<div class="menu">
<div class="tooltip"><button onclick="display('off')" class="button" >1st Officer</button><span class="tooltiptext">Commander: Jump complete</span></div>
<div class="tooltip"><button onclick="display('nav')" class="button" >Navigation</button><span class="tooltiptext">Commander: Preparing the next jump </span></div>
<div class="tooltip"><button onclick="display('sci')" class="button" >Science</button><span class="tooltiptext">Commander: Launch the drones commander</span></div>
<div class="tooltip"><button onclick="display('weps')" class="button" >Weapons</button><span class="tooltiptext">Commander: All quiet nothing to report</span></div>
</div>
<div class="screen">
<img src="./img/CentB.jpg" /><br>
<div id="off" style="display:none">All departments are reporting in, no issues to report.<br>Break open the champagne Commander!<br>For the record<br>We are the first humans to visit<br>any star system outside our home</div>
<div id="nav" style="display:none">Commander we are in the Proxima system.<br>Right where we are supposed to be<br>Amazing isn't it Commander</div>
<div id="sci" style="display:none">Commander there are two rocky worlds here<br>Proxima Centari B and Centari C</div>
<div id="weps" style="display:none">Commander deflectors are firing minor debris,<br>Nothing we cant cope with</div>
</div>
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<div class="modal-header">
<h1>HAL 9000</h1>
</div>
<div class="modal-body animate__animated animate__zoomIn">
<br>
<p>Receiving data from the drones</p>
<p>Proxima Centauri B............Proxima Centauri C</p>
<p>1.17 x mass of Earth...........7 x mass of Earth </p>
<p>Orbit 7.5m KM.....................Orbit 220m KM </p>
<p>Orbit 11.2 Earth Days.........Orbit 5.2 Earth years</p>
<p>Goldilocks zone..................Frozen Avg temp -212c</p>
<p>..........................................</p>
<p>Based on the returning evidence Commander</p>
<p>We should be able to terra form Proxima Cent B</p>
<p>However, C is too far away form Proxima A for surface colonisation</p>
<p>Further investigation of C would be needed to see if subsurface terra forming is viable</p>
<p>Something we are not equipped to do</p>
<p>...........................................</p
<p>New course has been plotted, on your orders we can jump</p>
<p>One last look at Proxima B commander?</p>
</div>
</div>
</div>
<div class="right">
<div class="tooltip2"><button id="myBtn" class="button" >Sensor</button><span class="tooltiptext">Press to Deploy long range sensor drones</span></div>
<audio id="myAudio">
<source src="./sound/launchdrones.mp3" type="audio/mpeg">
</audio>
<div class="tooltip2"><button onclick="location.href='warp/warpscreen2.html'" class="button" >Jump</button><span class="tooltiptext">Press to Jump to FTL speed</span></div>
</div>
<div class="footer"><br></div>
<div class="footer1">Earth's first faster than light Starship<img src="img/Dawn treader.jpg" /></div>
<div class="nothingright"></div>
</div>
<script src ="page.js" ></script>
</body >
</html >