This repository was archived by the owner on Feb 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (37 loc) · 1.33 KB
/
index.html
File metadata and controls
42 lines (37 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, height=device-height">
<title>failighting</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="failighting-gui.js"></script>
<script src="failighting-modules.js"></script>
</head>
<body>
<div id="main" class="main">
<div class="tabs">
<input id="scenes-tab" type="radio" name="tabs" checked="checked"/>
<label for="scenes-tab" class="tab0">Scenes</label>
<div id="scenes" class="scenes">
</div>
<input id="control-tab" type="radio" name="tabs"/>
<label for="control-tab" class="tab1">Control</label>
<div id="control" class="control">
loel tbd
</div>
<input id="devices-tab" type="radio" name="tabs"/>
<label for="devices-tab" class="tab2">Devices</label>
<div id="devices" class="devices">
</div>
<input id="debug-tab" type="radio" name="tabs"/>
<label for="debug-tab" class="tab3">Debug</label>
<div id="debug" class="debug">
<span onclick="fadeTest();" style="background-color:grey;">Fade Test (in development)</span>
<span onclick="devices[1].init();" style="background-color:grey;">init device01</span>
</div>
</div>
</div>
</body>
</html>