forked from lo-th/Avatar.lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (37 loc) · 1.02 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
45
<!DOCTYPE html>
<!-- saved from url=(0014)about:internet -->
<html>
<head>
<meta charset="UTF-8" />
<title>Avatar 2.0</title>
<meta name="Description" content="" />
<meta name="Keywords" content="" />
<meta http-equiv="X-UA-Compatible" content="IE=11" />
<meta http-equiv="Pragma" content="no-cache">
<link rel="shortcut icon" href="favicon.ico">
<style>
* {
margin: 0; padding: 0; border: 0;
-webkit-user-select: none; -khtml-user-select: none; -moz-user-select: -moz-none; -o-user-select: none;
/*box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;*/
user-select: none;
}
body {
font-family: Consolas, Monaco, monospace;
font-size: 11px;
color:#fff;
background: #222322;
overflow:hidden;
}
#container{ position:absolute; width:100%; height:100%; }
</style>
<script src="build/avatar.min.js"></script>
</head>
<body>
<div id='container'></div>
<script>
var container = document.getElementById('container');
main.init( container );
</script>
</body>
</html>