-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (90 loc) · 3.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en" style="margin:0;padding:0">
<head>
<meta charset="UTF-8">
<title>First Stepoff</title>
<link rel="icon" type="image/x-icon" href="logos/svg/logo-no-background.svg">
<link rel="stylesheet" href="main.css">
<script src="main.js" defer></script>
</head>
<body style="margin:0;padding:0" id="_body">
<div class="topnav">
<p>First Stepoff</p>
<p><a href="https://suave101.github.io/FirstStepoff/showPlayer.html">Show Player</a></p>
<p class="split" onclick="openNav()">☰</p>
</div>
<div id="myNav" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<a href="" download="NewShow.FDubShow" id="_Download">Download Show Here</a>
<p>Show Object Manager: <label class="switch"><input type="checkbox" id="_SOM_O" checked="true"><span class="slider round"></span></label></p></br>
<p>Show Object Table: <label class="switch"><input type="checkbox" id="_SOT_O" checked="true"><span class="slider round"></span></label></p></br>
<p>Show Video Area: <label class="switch"><input type="checkbox" id="_SVA_O" checked="true"><span class="slider round"></span></label></p></br>
</div>
</div>
<div class="flex-container">
<button onclick="setModeDot()">Create Dot</button>
<button onclick="setModeCircle()">Create Circle</button>
<button id="arcButton" onclick="alert('Feature Coming Soon')">Create Arc</button>
<button onclick="alert('Feature Coming Soon')">Create File/Column</button>
<button onclick="getDownloadedShow()">Upload Show</button>
</div>
<div class="tableDiv">
<table class="skunk" id="labelCordStable">
<tr class="skunk">
<th class="skunk">Left to Right</th>
<th class="skunk">Front to Back</th>
<th class="skunk">Side 1/2</th>
<th class="skunk">Set #</th>
<th class="skunk">Even Sets</th>
</tr>
<tr class="skunk">
<td class="skunk" id="tlr">??</td>
<td class="skunk" id="tfb">??</td>
<td class="skunk" id="s12">??</td>
<td class="skunk" id="setNumberContainer"><input type="number" value="1" id="SET_INPUT" min="1"></td>
<th class="skunk" id="evenSetsCheck">???</th>
</tr>
</table>
</div>
<div id="temp"></div>
<h1 id="fieldManagementLabel" draggable="false">Field: </h1>
<div id="marcherManagementDiv" ondrop="drop(event)" ondragover="allowDrop(event)"></div>
<div id="circleManagementDiv"></div>
<div id="setsTableDiv">
<table class="styled-table" id="69696">
<thead>
<tr>
<th>Object Type</th>
<th>Label</th>
<th>Left to Right</th>
<th>Front to Back</th>
<th>Side</th>
<th>ID</th>
</tr>
</thead>
<tbody>
<tr><td>???</td><td>???</td><td>???</td><td>???</td><td>???</td><td>???</td></tr>
</tbody>
</table>
</div>
<div id="videosArea">
<div class="_slideshow-container">
<div class="_mySlides _fade">
<iframe width="100%" height="500em" src="https://www.youtube.com/embed/s6ipmMbtkso" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="_mySlides _fade">
<iframe width="100%" height="500em" src="https://www.youtube.com/embed/0ioep8muXPk" title="First Stepoff Alpha Version 1.0.99" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<a class="_prev" onclick="plusSlides(-1)"></a>
<a class="_next" onclick="plusSlides(1)"></a>
</div>
<br>
<div style="text-align:center">
<span class="_dot" onclick="currentSlide(1)"></span>
<span class="_dot" onclick="currentSlide(2)"></span>
</div>
</div>
</div>
</body>
</html>