-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.33 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
<html>
<head>
<title>Projeto 9</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://code.jquery.com/jquery-1.12.1.min.js"></script>
<script src="gamelab-api.js"></script>
<link href="gamelab.css" rel="stylesheet" type="text/css">
<script src="p5.js"></script>
<script src="p5.play.js"></script>
<script src="code.js"></script>
<style>
body.expo {
background-color: black;
}
#sketch.expo.no-controls {
top: 82px;
}
</style>
</head>
<body class="web" style="margin:0; overflow:hidden; user-select:none; -webkit-user-select:none; -webkit-touch-callout:none; position:fixed; top:0; left:0; width:400px; height:565px;">
<div id="sketch" class="web" style="position:absolute;"></div>
<div id="soft-buttons" style="display: none">
<button id="leftButton" disabled className="arrow">
</button>
<button id="rightButton" disabled className="arrow">
</button>
<button id="upButton" disabled className="arrow">
</button>
<button id="downButton" disabled className="arrow">
</button>
</div>
<div id="studio-dpad-container" style="position:absolute; width:400px; bottom:5px; height:157px; overflow-y:hidden;">
</div>
</body>
</html>