-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
41 lines (41 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>RuneScape Classic Model Viewer</title>
</head>
<body>
<div id="rsc-models-model-wrap"></div>
<br />
<div>
<label>
<em>Model Name:</em>
<select id="rsc-models-name"></select>
</label>
</div>
<div>
<label>
<em>Lighting:</em>
<input
id="rsc-models-light"
type="range"
min="0.5"
max="3"
step="0.1"
value="1.0"
/>
</label>
</div>
<div>
<label>
<em>Background:</em>
<input
id="rsc-models-background"
type="color"
value="#ff00ff"
/>
</label>
</div>
<script src="/browser.bundle.js"></script>
</body>
</html>