File size: 993 Bytes
38adf92
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>TITAN / GLED viewer</title>
  <style>
    body { font-family: sans-serif; margin: .5rem; }
    #controls > div { margin: .3rem 0; }
    #controls label { font-family: monospace; }
    input[type="range"] { width: 100%; }
    button[aria-pressed="true"], button[aria-checked="true"] { background: Highlight; color: HighlightText; }
    #grid { display: grid; gap: 0.5rem; align-items: start; }
    #grid img { width: 100%; height: auto; display: block; }
  </style>
</head>
<body>
  <div id="controls">
    <div id="channels"></div>
    <div id="scales"></div>
    <div><label for="t">t</label> <input type="range" id="t" min="0" value="0"></div>
    <div><label for="z">z</label> <input type="range" id="z" min="0" value="0"></div>
  </div>
  <div id="grid"></div>
  <script src="meta.js"></script>
  <script src="app.js"></script>
</body>
</html>