-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (38 loc) · 1.77 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
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/styles/mainPage.css" type="text/css">
<link rel="stylesheet" href="/styles/boardSliders.css" type="text/css">
<script src="/styles/stylingHelper.js"></script>
</head>
<body class="basic-back">
<script src="/socket.io/socket.io.js."></script>
<script src="/js/canvas.mjs" type="module"></script>
<script src="/js/boxFoundation.mjs" type="module"></script>
<script src="/js/lightFoundation.mjs" type="module"></script>
<!-- <script src="/js/sliderboard.mjs" type="module"></script> -->
<script src="/js/other.mjs" type="module"></script>
<script src="/js/sockets.mjs" type="module"></script>
<script>
</script>
<div class="stage" id="stage"></div>
<div class="sub-stage" id="sub-stage" ondblclick="switchView(this)" >
</div>
<div class="menu-bar">
<button onclick="newBox(document.getElementById('inBox').value)">Boxes</button>
<button onclick="newLight(document.getElementById('inBox').value)">Lights</button>
<button>Cues</button>
<button>Other</button>
<button id="slidos" onclick="">Slido</button>
<button id="save" onclick="saveScene()">save</button>
<button id="load" onclick="loadScene()">load</button>
<button id="favorite-4">Fav4</button>
<input type="text" placeholder="name" id="inBox" autocomplete="off">
<input type="checkbox" value="true" id="highlight-toggle">
</div>
<div class="title-bar">
</div>
<div class="settings-box" id="settings-box">
</div>
</body>
</html>