-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (41 loc) · 1.64 KB
/
Copy pathindex.html
File metadata and controls
50 lines (41 loc) · 1.64 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Deep-Dive 3D GPU Visualizer</title>
<link rel="stylesheet" href="/src/styles.css">
</head>
<body>
<div id="canvas-container"></div>
<div id="overlay-2d"></div>
<div id="ui-layer">
<div id="filters-panel" class="panel">
<div class="header-row">
<h1 id="app-title">GPU Visualizer</h1>
<button id="theme-btn" title="Toggle Light/Dark Mode">☀️</button>
</div>
<div class="panel-body">
<!-- Device switcher (populated from the device registry) -->
<div class="btn-group" id="device-switch"></div>
<div class="btn-group">
<button id="btn-select-all">Select All</button>
<button id="btn-deselect-all">Deselect All</button>
</div>
<!-- Filter checkboxes (generated per active device) -->
<div class="filter-group" id="filter-group"></div>
</div>
</div>
<div id="info-panel" class="panel">
<h2 id="info-title">Interactive Visualizer</h2>
<p id="info-desc">Hover over any 3D component.</p>
</div>
<div id="anim-controls" class="panel">
<button id="anim-toggle">⏸ Pause</button>
<span id="anim-phase"></span>
</div>
<div class="hint">Left Click + Drag: Rotate | Scroll: Zoom | Right Click + Drag: Pan</div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>