forked from taisel/GameBoy-Online
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
executable file
·37 lines (37 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="css/style.css"/>
</head>
<body>
<div id="gameboy_shell">
<div id="game">
<canvas id="mainCanvas" width="160" height="144">No Canvas Support</canvas>
</div>
<div id="controller">
<div id="controller_dpad">
<div id="controller_left"></div>
<div id="controller_right"></div>
<div id="controller_up"></div>
<div id="controller_down"></div>
</div>
<div id="controller_select" class="capsuleBtn">Select</div>
<div id="controller_start" class="capsuleBtn">Start</div>
<div id="controller_b" class="roundBtn">B</div>
<div id="controller_a" class="roundBtn">A</div>
</div>
</div>
<script src="js/other/mobile.js"></script>
<script src="js/other/base64.js"></script>
<script src="js/other/swfobject.js"></script>
<script src="js/other/resampler.js"></script>
<script src="js/other/XAudioServer.js"></script>
<script src="js/other/controls.js"></script>
<script src="js/other/resize.js"></script>
<script src="js/GameBoyCore.js"></script>
<script src="js/GameBoyIO.js"></script>
</body>
</html>