-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrefactor.html
More file actions
39 lines (35 loc) · 1.28 KB
/
refactor.html
File metadata and controls
39 lines (35 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BICI - Interactive Video Chat Platform</title>
<link rel="stylesheet" href="core/css/style.css" />
</head>
<body>
<script src="core/js/bici.js"></script>
<!-- Main visible elements -->
<div id="stage">
<video id="webcam" autoplay playsinline hidden></video>
<canvas id="canvas-2d"></canvas>
<canvas id="canvas-scene" width="500" height="500"></canvas>
<canvas id="canvas-slide" width="500" height="500"></canvas>
<canvas id="canvas-overlay"></canvas>
<textarea id="code-editor" spellcheck="false"></textarea>
</div>
<!-- Project selector overlay (shown at startup) -->
<div id="project-selector">
<h1>BICI</h1>
<div class="subtitle">Select a project to begin</div>
<div id="project-grid">
<button data-project="m0116">0116</button>
</div>
</div>
<!-- Mini project switcher (visible after project loaded) -->
<div id="project-switcher">
<span id="current-project"></span>
<button id="project-switch-btn">Switch Project</button>
</div>
<script type="module" src="core/main.js"></script>
</body>
</html>