-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
94 lines (85 loc) · 2.98 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
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<title>Guitar Hero</title>
<link rel="stylesheet" type="text/css" href="css/master.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bangers" rel="stylesheet">
</head>
<body>
<script src="vendor/three.js"></script>
<script type="text/javascript" src="lib/bundle.js"></script>
<div id="game-canvas">
<div class="game-display">
<div class="header">
<p class="creator">Created by <span>JheDev96</span></p>
<h1 class="title">JS Hero</h1>
<div class="professional-links">
<!--a
href="https://www.linkedin.com/in/jay-schwartz/"
target="_blank">
<img src="photos/linkedin_icon.png" alt="Linked In">
</a-->
<a
href="https://github.com/jhedev96"
target="_blank">
<img src="photos/github_icon.png" alt="Github">
</a>
</div>
</div>
<div class="game-details">
<div class="game-details-left">
<h1 class="score">Score: 0</h1>
<h1 class="max-streak">Max Streak: 0</h1>
</div>
<div class="game-details-right">
<h1 class="multiplier">Multiplier: 1X</h1>
<h1 class="streak">Streak: 0</h1>
</div>
</div>
<div class="game-start">
<h1 class="start">PRESS "A" TO START</h1>
</div>
<div class="instructions">
<div class="close-instructions">
<h1>X</h1>
<h2>(close instructions)</h2>
</div>
<ul class="instructions-text">
<h1>Instructions</h1>
<li>As the colored notes move to the circles at the bottom of the fret board, hit the corresponding keys in sequence to score points!</li>
<li>Score enough notes in a row, and your score multiplier will increase!</li>
<li>To take a look around, click the button in the lower left hand corner.</li>
</ul>
<ul class="letters">
<li class="green">A</li>
<li class="red">S</li>
<li class="yellow">D</li>
<li class="blue">F</li>
<li class="orange">G</li>
</ul>
</div>
<div class="game-progress">
<input
class="rock-input"
type="range"
min="-20"
max="20"
value="0">
</input>
<h1 class="rock-header">Rock Meter</h1>
</div>
</div>
<div class="game-control-panel">
<button class="open-instructions">How To Play</button>
<button class="look-around">Look Around</button>
<button class="play-pause hidden">Pause</button>
<button class="mute">Mute</button>
</div>
</div>
<div id="song"></div>
<div class="look-around-instructions hidden">
<h1>CLICK AND DRAG TO LOOK AROUND</h1>
</div>
</body>
</html>