-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (52 loc) · 1.54 KB
/
index.html
File metadata and controls
59 lines (52 loc) · 1.54 KB
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
<html>
<head>
<meta charset="UTF-8">
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="content">
<div class="fuel">
<div class="bar">
<div class="level" data="100"></div>
</div>
<p class="label">Fuel</p>
</div>
<div class="oxygen">
<div class="bar">
<div class="level" data="100"></div>
</div>
<p class="label">Oxygen</p>
</div>
<div class="life">
<p class="label">Life</p>
<div class="bar">
<div class="level" data="100"></div>
</div>
</div>
<div class="story">
<div class="text-box">
<p class="text">This is a test</p>
<p class="option option-1">A : <span></span></p>
<p class="option option-2">B : <span></span></p>
<p class="option option-3">C : <span></span></p>
</div>
<div class="buttons">
<button class="option-1">A</button>
<button class="option-2">B</button>
<button class="option-3">C</button>
<button class="option-4">OK</button>
<button class="option-5">RESTART</button>
</div>
</div>
<img class="spaceship" src="images/spaceship.png" alt="">
</div>
<script src="js/vendor/jquery.min.js"></script>
<script src="js/vendor/three.min.js"></script>
<script src="js/vendor/THREE.TargetCamera.js"></script>
<!-- <script src="js/OrbitControls.js"></script> -->
<script src="js/solar.js"></script>
<script src="js/story.js"></script>
<script src="js/main.js"></script>
</body>
</html>