-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
145 lines (141 loc) · 4.18 KB
/
404.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0,
user-scalable=0">
<title>BCMC | Toolbox</title>
<link rel="shortcut icon" href="https://res.bcmc.ga/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://css.bcmc.ga/dist/bcmc.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="bg-green text-white">
<div class="container">
<div class="site-head">
<h1 class="site-title"><img class="toggler" src="https://res.bcmc.ga/bcmc-white-logo.png"
alt="Box Critters Modding Community" data-toggle-target="#bcmc-menu" data-toggle-class="hide">
<a href="/">Toolbox</a>
</h1>
<a href="#" class="btn hide-desktop toggler" data-toggle-self="open" data-toggle-target="#site-menu"
data-toggle-class="hide-mobile">
<div class="burger"></div>
</a>
</div>
<nav id="bcmc-menu" class="hide nav-dropdown"></nav>
<nav id="site-menu" class="hide-mobile nav-header">
<ul>
<li><a href="#">Room Inspect</a></li>
<li><a href="#">Player Lookup</a></li>
<li><a href="#">Custom Critter</a></li>
<li><a href="#">Item Lookup</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="container">
<h2>Coming Soon</h2>
<p>This Page is Coming Soon</p>
<div class="row">
<select class="col-6" name="roomid" id="select-room">
<!-- <option value="none">Select Room</option> -->
</select>
<audio controls autoplay loop class="6"></audio>
<a href="#" id="playAnimation" class="btn bg-primary toggler" data-toggle-self="enabled">
Animate</a>
<a href="#" id="tickAnimation" class="btn bg-primary">
Tick</a>
</div>
<p><strong>Tip:</strong> Click canvas to toggle fullscreen</p>
<canvas id="layerPreview" class="hide"></canvas>
</div>
<div class="">
<div id="roomPreview" class="toggler" data-toggle-self="fullscreen"
data-toggle-body="scroll-disable">
<canvas id="roomPreviewCanvas"></canvas>
</div>
<table class="" cellspacing="0">
<thead>
<tr>
<th rowspan="2"></th>
<th rowspan="2"></th>
<th rowspan="2">SpriteSheet</th>
<th colspan="2" class="hide-mobile">Pos</th>
<th colspan="2" class="hide-mobile">Origin</th>
<th colspan="5" class="hide-mobile">Frame</th>
<th colspan="2" class="hide-mobile">Size</th>
</tr>
<!-- <tr>
<th class="hide-mobile">X</th>
<th class="hide-mobile">Y</th>
<th class="hide-mobile">X</th>
<th class="hide-mobile">Y</th>
<th class="hide-mobile">No.</th>
<th class="hide-mobile">X</th>
<th class="hide-mobile">Y</th>
<th class="hide-mobile">regX</th>
<th class="hide-mobile">regY</th>
<th class="hide-mobile">W</th>
<th class="hide-mobile">H</th>
</tr> -->
</thead>
<tbody id="layers">
<tr>
<td class="drag-widget">
<div class="burger"></div>
</td>
<td><input type="checkbox" name="visability" checked>
</td>
<td>
<input type="url" name="sprite-sheet">
</td>
<td>
<input type="number" name="frame">
</td>
<td>
<input type="number" name="pos-x">
</td>
<td>
<input type="number" name="pos-y">
</td>
<td>
<input type="number" name="crop-w">
</td>
<td>
<input type="number" name="crop-h">
</td>
<td>
<input type="number" name="pos-x">
</td>
<td>
<input type="number" name="pos-y">
</td>
<td>
<input type="number" name="origin-x">
</td>
<td>
<input type="number" name="origin-y">
</td>
<td>
<input type="number" name="size-w">
</td>
<td>
<input type="number" name="size-h">
</td>
</tr>
</tbody>
</table>
</div>
</div>
</main>
<footer class="bg-green">
<div class="container">
<script src="https://res.bcmc.ga/footer.js"></script>
</div>
</footer>
<script src="https://css.bcmc.ga/dist/bcmc.min.js"></script>
<script src="bower_components/html5sortable/dist/html5sortable.min.js"></script>
<script src="js/script.min.js"></script>
</body>
</html>