-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
164 lines (154 loc) · 5.31 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<html>
<head>
<meta charset="utf-8">
<title>Puyo Puyo</title>
<!-- Styling -->
<link rel="stylesheet" type="text/css" href="./css/reset.css"></link>
<link rel="stylesheet" type="text/css" href="./css/puyo.css"></link>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"/></script>
<!-- bundle.js -->
<script type="text/javascript" src="bundle.js" charset="utf-8"></script>
<!-- favicon -->
<link rel="short icon" href="img/favicon.ico">
<!-- Custom Fonts -->
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Orbitron:900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Days+One" rel="stylesheet">
</head>
<body>
<section class="whole-container">
<header>
<div class="name">
Brian Sungho Jang
</div>
<ul>
<li>
<a href="https://github.com/shjang1007">
<i class="fa fa-github fa-fw fa-1x"></i>Github
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/briansjang">
<i class="fa fa-linkedin-square fa-fw fa-1x"></i>LinkedIn
</a>
</li>
<li>
<a href="http://brianjang.us/">
<i class="fa fa-folder-o fa-fw fa-1x"></i>Portfolio
</a>
</li>
</ul>
</header>
<section class="title">
Puyo Puyo
</section>
<main>
<section class="instruction-container">
<ul class="keys-instruction">
<li>
<i class="fa fa-keyboard-o fa-fw fa-2x"></i> Key
</li>
<li>
<i class="fa fa-arrow-left fa-fw fa-1x"></i>: Move left
</li>
<li>
<i class="fa fa-arrow-right fa-fw fa-1x"></i>: Move right
</li>
<li>
<i class="fa fa-arrow-down fa-fw fa-1x"></i>: Quick Drop
</li>
<li>
" " : Rotate Puyos
</li>
</ul>
<div class="instruction-content">
<button class="play-symbol">
<i class="fa fa-gamepad fa-fw fa-2x"></i> How to play
</button>
<ul class="drop-down-instruction">
<li>The goal is simple. Survive as long as you can!</li>
<br>
<li>Four or more of the same color bubbles to clear them</li>
<br>
<li>As time goes, the speed of the puyos dropping will get faster</li>
<br>
<li>Good luck!</li>
</ul>
</div>
</section>
<section class="puyo-container">
<canvas id="puyo-canvas"></canvas>
</section>
<section class="game-info-container">
<ul class="buttons">
<button type="button" id="pause-button">
<i class="fa fa-pause-circle-o fa-fw fa-4x"></i>
</button>
<button type="button" id="restart-button">
<div class="restart-text">
Restart
</div>
<i class="fa fa-power-off fa-fw fa-4x"></i>
</button>
<button type="button" id="mute-button">
<i id="sound-icon" class="fa fa-volume-off fa-fw fa-4x"></i>
</button>
</ul>
<section class="stats">
<div class="next-piece-board">
<div class="next-text">
Next
</div>
<canvas id="next-puyo-canvas"></canvas>
</div>
<div id="score" class="score-board">
</div>
</section>
</section>
</main>
<footer>
<ul>
<li>
<a href="https://github.com/shjang1007">
<i class="fa fa-github fa-fw fa-1x"></i>Github
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/briansjang">
<i class="fa fa-linkedin-square fa-fw fa-1x"></i>LinkedIn
</a>
</li>
<li>
<a href="http://brianjang.us/">
<i class="fa fa-folder-o fa-fw fa-1x"></i>Portfolio
</a>
</li>
</ul>
</footer>
</section>
<!-- Modal Time! -->
<div id="modal-container" class="modal">
<!-- Modal content -->
<div id="start-text" class="modal-content">
<h3>Introduction from Brian Jang</h3>
<p>Hello! Welcome to Puyo Puyo.</p>
<p>The goal is simple. Survive as long as you can!</p>
<p>Four or more of the same color bubbles to clear them.</p>
<p>As time goes, the speed of the puyos dropping will get faster.</p>
<p>Good luck!</p>
<br>
<p class="enter-to-play">Press <span>Enter</span> to start!</p>
<br>
<p id="red-color">Warning: There will be sound, so lower that volume if needed!</p>
</div>
<!-- Gameover modal -->
<div id="end-text" class="end-modal-content">
<h1>GAME OVER!</h1>
<p class="enter-to-play">Press <span>Enter</span> to restart!</p>
</div>
</div>
<audio id="bgm" loop="true" src="./sound/puyo-puyo-music.mp3"/>
<audio id="game-over-music" loop="true" src="./sound/game-over.mp3"/>
</body>
</html>