-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (80 loc) · 2.94 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
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Virtual Real Estate</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="favicon.ico">
</head>
<body>
<div id="left-sidebar">
<!-- Material List -->
<p class="full-p">Materials</p>
<div id="materials-list">
</div>
</div>
<div id="middle-viewer">
<!-- 3D Viewer Container -->
<div id="3d-viewer">
<!-- Your 3D viewer content goes here -->
</div>
</div>
<div id="right-sidebar">
<div id="material-manager">
<!-- Material Manager (Paint, Size) -->
<h3>Material Manager</h3>
<h4 id="mat-name">None Selected</h4>
<div>
<label for="paint-color">Color:</label>
<div id="color-selector">
</div>
</div>
<div id="pos">
<p>Position:</p>
<input type="number" name="px" id="px" placeholder="x"/>
<input type="number" name="py" id="py" placeholder="y"/>
<input type="number" name="pz" id="pz" placeholder="z"/>
</div>
<div id="rot">
<p>Rotation:</p>
<input type="number" name="rx" id="rx" placeholder="x"/>
<input type="number" name="ry" id="ry" placeholder="y"/>
<input type="number" name="rz" id="rz" placeholder="z"/>
</div>
<div>
<p>Material Size:</p>
<br>
<label for="material-width-slider">Width: </label>
<input type="range" id="material-width-slider" min="1" max="100" value="1">
<span id="material-width"></span>
<br>
<label for="material-height-slider">Height: </label>
<input type="range" id="material-height-slider" min="1" max="100" value="1">
<span id="material-height"></span>
<br>
<label for="material-depth-slider">Depth: </label>
<input type="range" id="material-depth-slider" min="1" max="100" value="1">
<span id="material-depth"></span>
</div>
</div>
<div id="cost-hours-manager">
<!-- Cost and Man Hours Manager -->
<h3>Cost and Man Hours</h3>
<div>
<p>Total Cost: $0.00</p>
<p>Total Man Hours: 0</p>
</div>
<button id="download">
Download Scene
</button>
</div>
</div>
<div id="rmenu" style="display: none;">
<ul>
<li><a role="button" href="#">Load Terrain</a></li>
</div>
<!-- Add your JavaScript script tag here for interactivity -->
</body>
<script src="scripts/app.js" type="module"></script>
</html>