-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroomplanner.html
More file actions
49 lines (48 loc) · 902 Bytes
/
roomplanner.html
File metadata and controls
49 lines (48 loc) · 902 Bytes
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>
<head>
<title>Room Planner</title>
<style>
#container {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
#sidebar {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 200px;
background-color: #f5f5f5;
overflow-y: auto;
padding: 10px;
}
#canvas {
position: absolute;
top: 0;
left: 200px;
bottom: 0;
right: 0;
}
</style>
</head>
<body>
<div id="container">
<div id="sidebar">
<h3>Furniture</h3>
<ul>
<li data-name="table">Table</li>
<li data-name="chair">Chair</li>
<li data-name="couch">Couch</li>
<li data-name="bed">Bed</li>
</ul>
</div>
<div id="canvas"></div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="script.js"></script>
</body>
</html>