forked from github/game-off-2016
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (79 loc) · 3.39 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
<!DOCTYPE html>
<html>
<meta content="text/html" charset="UTF-8">
<meta name="viewport" content="width=500,user-scalable=no">
<meta name="description" content="PONG+BREAKOUT=PONGOUT">
<meta property="og:title" content="PONGOUT">
<meta property="og:type" content="website">
<meta property="og:description" content="PONG+BREAKOUT=PONGOUT">
<meta property="og:url" content="https://kurehajime.github.io/pongout/">
<meta property="og:image" content="https://kurehajime.github.io/pongout/assets/ss.png">
<meta property="og:image:width" content="500" />
<meta property="og:image:height" content="500" />
<meta property="og:site_name" content="PONGOUT">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@kurehajime">
<meta name="twitter:creator" content="@kurehajime">
<meta name="twitter:title" content="PONGOUT">
<meta name="twitter:description" content="PONG+BREAKOUT=PONGOUT">
<meta name="twitter:image" content="https://kurehajime.github.io/pongout/assets/ss.png">
<head>
<link rel="stylesheet" type="text/css" href="index.css?000014">
<script src="index.js?000014" defer></script>
<title>PONGOUT</title>
</head>
<body>
<div class="center" width="500px" >
<canvas id="canv" width="500px" height="500px"></canvas>
<div id="box_out">
<div id="box">
<span id="command">
<a href="https://github.com/kurehajime/pong-command"><img id ="command" src="assets/command.png" alt="command" width="50px" height="50px"></a><br>
<span id="command_msg">Terminal</span>
</span>
<span id="gyro">
<input type="image" id ="gyro_btn" src="assets/axis.png" alt="axis" width="50px" height="50px"><br>
<span id="gyro_msg">Gyro OFF</span>
</span>
<span id="tweet">
<img id ="tweet_btn" src="assets/tweet.png" alt="tweet" width="50px" height="50px"><br>
<span id="tweet_msg">tweet</span>
</span>
</div>
</div>
</div>
<audio id="player" preload="auto">
<source src="assets/player.mp3" type="audio/mp3">
</audio>
<audio id="enemy" preload="auto">
<source src="assets/enemy.mp3" type="audio/mp3">
</audio>
<audio id="wall" preload="auto">
<source src="assets/wall.mp3" type="audio/mp3">
</audio>
<audio id="clash" preload="auto">
<source src="assets/clash.mp3" type="audio/mp3">
</audio>
<audio id="miss" preload="auto">
<source src="assets/miss.mp3" type="audio/mp3">
</audio>
<audio id="1up" preload="auto">
<source src="assets/1up.mp3" type="audio/mp3">
</audio>
<audio id="win" preload="auto">
<source src="assets/win.mp3" type="audio/mp3">
</audio>
<audio id="gameover" preload="auto">
<source src="assets/gameover.mp3" type="audio/mp3">
</audio>
<audio id="moya" preload="auto">
<source src="assets/moya.mp3" type="audio/mp3">
</audio>
<audio id="falling" preload="auto">
<source src="assets/falling.mp3" type="audio/mp3">
</audio>
<img src="assets/brown.png" style="display:none">
<img src="assets/PONGOUT.png" style="display:none">
<div id="foot">made by <a href="https://github.com/kurehajime">kurehajime</a> /sound <a href="http://maoudamashii.jokersounds.com/">maoudamashii</a></div>
</body>
</html>