-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
44 lines (38 loc) · 1.06 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
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui"/>
<title>FindingLove</title>
<style>
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
* {
position: absolute;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
-ms-user-select: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-text-size-adjust: none;
}
</style>
<script src="lib/three.min.js"></script>
<script src="lib/uil.min.js"></script>
<script src="js/Utils.js"></script>
<script src="js/elements/Gem.js"></script>
<script src="js/elements/Terrain.js"></script>
<script src="js/elements/Sky.js"></script>
<script src="js/Main.js"></script>
</head>
<body>
</body>
</html>