-
Notifications
You must be signed in to change notification settings - Fork 0
/
gbfsort.html
123 lines (119 loc) · 3.82 KB
/
gbfsort.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en"><head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<link rel="shortcut icon" href="placeholder.ico" type="image/x-icon">
<link rel="icon" href="placeholder.ico" type="image/x-icon">
<title>Granblue Sort</title>
<noscript></noscript><script type="text/javascript" src="js/gbfsort/mod_k-factory.js"></script>
<script type="text/javascript" src="js/gbfsort/fnc_main_v4.js"></script>
<script type="text/javascript" src="js/gbfsort/fnc_data_v2.js"></script>
<link rel="stylesheet" type="text/css" href="css/gbfsort/tcs_style.css">
<style type="text/css">
<!--
.style4 {
font-family: Arial, Helvetica, sans-serif;
color: #000000;
font-weight: normal;
font-size: 11px;
}
a:link {
color: #990000;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
}
a {
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
}
a:visited {
text-decoration: none;
color: #6600FF;
font-size: 11px;
font-family: Arial, Helvetica, sans-serif;
}
a:hover {
text-decoration: none;
color: #FF6600;
font-size: 11px;
font-family: Arial, Helvetica, sans-serif;
}
a:active {
text-decoration: none;
font-size: 11px;
font-family: Arial, Helvetica, sans-serif;
}
-->
</style>
</head><body onLoad="startup()">
<div align="center" class="battle box">
<table id="progressTable">
<thead>
<tr>
<td colspan="3" class="tb_header">Battle No. <span id="lblCount">-</span><br>
<span id="lblProgress">0</span>% sorted.<br>
<div align="center"><span id="GaGprog"></span></div>
</td>
</tr>
</thead>
</table>
<table id="mainTable">
<tbody>
<tr>
<!-- left panel -->
<td id="fldLeft" class="idol" onClick="fnc_Sort(-1);" rowspan="2"><img src="images/gbfsort/Zooey.png"></td>
<td id="fldMiddleT">
<div id="divMiddleT" onClick="fnc_Sort(0);">Start Sort</div></td>
<!-- right panel -->
<td id="fldRight" class="idol" onClick="fnc_Sort(1);" rowspan="2"><img src="images/gbfsort/Societte.png"></td>
</tr>
<tr>
<td id="fldMiddleB">
<div id="divMiddleB" onClick="fnc_Undo();">Start Sort</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3"><div align="center">
<input id="optImage" type="checkbox" checked></input>
<span class="tb_header">Display images while sorting
</span></div></td>
</tr>
<tr>
<td colspan="3"><div align="center">
<input id="optAgony" type="checkbox" checked></input>
<span class="tb_header"><span style="color:#ff0000;">Agony mode enabled</span> (disables ties and undos)
</span></div></td>
</tr>
</tfoot>
</table>
</div>
<br>
<table id="optTable" align="center" width="450" style="text-align:left;"></table>
<br>
<div id="ranTable" width="640px" align="center" class="tb" style="display:none;">
<div>
<form>
<input type='button' value='Raw Text Results' onclick='OpenWnd()'>
</form>
</div>
</div>
<div class="style4" id="resultField" style="text-align:center;">
<p>Update Log:<br>
2020/01/07 - Character additions<br>
2019/08/30 - Character additions<br>
2019/03/19 - Oracles added<br>
2019/01/01 - Character additions and fixes<br>
2017/08/23 - Collab options, character fixes / additions<br>
2017/08/21 - First Build</p>
<br>
<p>
Code and Design from <a href="http://kouhi.me/idol/">kouhi.me/idol</a><br><br>
</p>
</div></body>
</html>