forked from arturitu/threejs-animation-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (45 loc) · 954 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
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8' />
<title>threejs-animation-workflow</title>
<meta name='viewport' content='width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0'>
<link rel="shortcut icon" href="favicon.ico"/>
<style>
body {
background-color: #000;
color: #888;
font-family: Helvetica;
line-height: 26px;
margin: 0px;
overflow: hidden;
}
h1 {
color: #fff;
margin: 8px;
}
a {
color: #48f;
text-decoration: none;
}
a:hover {
color: #fff;
}
#container {
box-sizing: border-box;
height: 100%;
left: 0;
margin: 0;
position: absolute;
top: 0;
width: 100%;
}
</style>
</head>
<body>
<div id='container'></div>
<script src='js/libs/three.min.js'></script>
<script src="js/controls/OrbitControls.js"></script>
<script src="js/main.js"></script>
</body>
</html>