-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
index.html
33 lines (33 loc) · 1.09 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
<!doctype html>
<html>
<head>
<meta charset='UTF-8' />
<title>deck.gl example</title>
<style type="text/css">
body {margin: 0; padding: 0; height: 100vh; font-family: Helvetica,arial,sans-serif;}
#control-panel {font-size: 12px; position: fixed; top: 0; left: 0; margin: 20px; padding: 12px; z-index: 9;}
</style>
</head>
<body>
<div id="control-panel">
<div>
<label for="debug-enabled">Debug</label>
<input type="checkbox" id="debug-enabled" name="enable"></input>
</div>
<h5>Color Mode</h5>
<div>
<input type="radio" id="color-mode-none" name="color-mode" checked></input>
<label for="color-mode-none">None</label>
</div>
<div>
<input type="radio" id="color-mode-depth" name="color-mode"></input>
<label for="color-mode-depth">Depth</label>
</div>
<div>
<input type="radio" id="color-mode-fragment" name="color-mode"></input>
<label for="color-mode-fragment">Fragment</label>
</div>
</div>
<script type="module" src='app.js'></script>
</body>
</html>