-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 888 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>PlayCanvas Walkabout</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"
/>
<script src="https://code.playcanvas.com/playcanvas-stable.min.js"></script>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
}
canvas {
width: 100%;
height: 100%;
}
.message {
position: absolute;
padding: 8px 16px;
left: 20px;
bottom: 20px;
color: #ccc;
background-color: rgba(0, 0, 0, 0.5);
font-family: "Proxima Nova", Arial, sans-serif;
}
</style>
</head>
<body>
<canvas id="application-canvas"></canvas>
<div class="message"></div>
<script src="index.js"></script>
</body>
</html>