-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgamepad.html
64 lines (52 loc) · 2.18 KB
/
gamepad.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Metadata -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Game Title -->
<title>Tron Gamepad</title>
<!-- Import external stylesheets -->
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Bungee&display=swap" rel="stylesheet">
<style type=text/css>
@media screen and (orientation:landscape) {
#portrait {
display: none;
}
}
@media screen and (orientation:portrait) {
#landscape {
display: none;
}
}
</style>
<!-- Import Unboared UMD library (Javascript) -->
<script src="https://developers.unboared.com/unboared-lib/umd/v0.3.1/unboared-lib.js"></script>
<!-- Import the gamepad logic that contain the TronGamepad class -->
<script src="tronGamepad.js"></script>
</head>
<body onload="window.app = new TronGamepad()">
<div id="portrait">
Change the orientation to play
</div>
<div id="landscape">
<div id="upButton" class="button" ontouchstart="window.app.sendMessageToScreen('UP')">
UP
</div>
<div id="downButton" class="button" ontouchstart="window.app.sendMessageToScreen('DOWN')">
DOWN
</div>
<div id="leftButton" class="button" ontouchstart="window.app.sendMessageToScreen('LEFT')">
LEFT
</div>
<div id="rightButton" class="button" ontouchstart="window.app.sendMessageToScreen('RIGHT')">
RIGHT
</div>
<div id="centerButton" class="button" ontouchstart="window.app.sendMessageToScreen('START')">
START
</div>
</div>
</body>
</html>