-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (33 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>三国志II 覇王の大陸</title>
<link rel="stylesheet" href="//unpkg.com/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="canvas"><canvas></canvas></div>
<div id="controller-left">
<button class="button is-large is-rounded" data-key="ArrowUp">👆</button>
<br>
<button class="button is-large is-rounded" data-key="ArrowLeft">👈</button>
<button class="button is-large is-rounded" data-key="ArrowRight">👉</button>
<br>
<button class="button is-large is-rounded" data-key="ArrowDown">👇</button>
</div>
<div id="controller-right">
<button class="button is-large is-rounded" data-key="s">Save</button>
<button class="button is-large is-rounded" data-key="l">Load</button>
<br>
<button class="button is-large is-rounded" data-key="Space">Select</button>
<button class="button is-large is-rounded" data-key="Enter">Start</button>
<br>
<button class="button is-large is-rounded" data-key="x">B</button>
<button class="button is-large is-rounded" data-key="z">A</button>
</div>
<script src="//unpkg.com/[email protected]/dist/fceux.js"></script>
<script src="app.js"></script>
</body>
</html>