-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (47 loc) · 1.3 KB
/
index.html
File metadata and controls
52 lines (47 loc) · 1.3 KB
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
<!DOCTYPE html>
<html>
<head>
<meat http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"
/>
<meta name="MobileOptimized" content="320" />
<meta name="format-detection" content="telephone=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<title>Stone Fly to Me</title>
<style>
* {
margin: 0;
padding: 0;
}
html,
body {
width: 100%;
height: 100%;
overflow: hidden;
}
.full-screen {
width: 100%;
height: 100%;
}
</style>
<script src="pep.min.js"></script>
<script src="babylon.js"></script>
</head>
<body onload="FlyingStone.start()">
<div class="full-screen">
<div id="fps" style="
position: absolute;
right: 20px;
top: 5em;
font-size: 20px;
color: balck;
"></div>
<div touch-action="none" class="full-screen">
<canvas id="stone" class="full-screen"></canvas>
</div>
</div>
</div>
</body>
<script src="index.js"></script>
</html>