-
Notifications
You must be signed in to change notification settings - Fork 4
/
height-map.html
53 lines (48 loc) · 1.22 KB
/
height-map.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Workshop</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
font-family: Monospace;
background-color: #000;
color: #000;
margin: 0px;
overflow: hidden;
}
#info {
color: #000;
position: absolute;
top: 10px;
width: 100%;
text-align: center;
z-index: 100;
display:block;
}
#info a, .button { color: #f00; font-weight: bold; text-decoration: underline; cursor: pointer }
#controls{
/* width:500px;*/
padding:10px;
position:absolute;
top:0px;
left:0px;
z-index:1000;
background-color:rgba(255,255,255,0.75);
}
#controls label{
display:inline-block;
width:100px;
}
</style>
</head>
<body>
<div id="workshop"></div>
<script src="js/three.min.r58.js"></script>
<script src="js/OBJLoader.js"></script>
<script src="js/height-map.js"></script>
<script src="js/OrbitControls.js"></script>
<div id="controls"><b>Shader Controls</b></div>
</body>
</html>