-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
85 lines (66 loc) · 1.53 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<title>Three JS Test</title>
<script src="js/jQuery10.js"></script>
<script src="js/three.min.js"></script>
<script src="js/Detector.js"></script>
<script src="js/OrbitControls.js"></script>
<script src="js/basic.js"></script>
<script src="js/addModel.js"></script>
<style>
body {
padding: 0;
margin: 0;
}
#main {
}
#centerWrap {
min-width: 960px;
display: block;
float: left;
}
#leftWrap {
width: 15%;
min-width: 100px;
min-height: 300px;
background-color: red;
display: none;
float: left;
}
#rightWrap {
width: 15%;
min-width: 100px;
min-height: 540px;
background-color: #fff;
border: 10px solid #759e1a;
display: block;
height: 100%;
float: left;
box-sizing: border-box;
}
.clear {
clear: both;
}
canvas.buildMenu {
width: 100px;
height: 100px;
border: 1px solid gray;
}
</style>
</head>
<body>
<div id="main">
<div id="leftWrap">
</div>
<div id="centerWrap">
<div id="container"></div>
</div>
<div id="rightWrap">
<h3>Bauen</h3>
<canvas id="pinwheel" class="buildMenu"></canvas>
</div>
<div class="clear"></div>
</div>
</body>
</html>