-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
107 lines (78 loc) · 4.31 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
95
96
97
98
99
100
101
102
103
104
105
106
107
<html>
<head>
<link rel="shortcut icon" href="src/assets/favicon.png" type="image/x-icon">
<link rel="icon" href="src/assets/favicon.png" type="image/x-icon">
<meta charset="utf-8">
<meta name="og:site_name" content="Arknights: Endfield Operator Sorter">
<meta name="og:description" content="A simple website for sorting Arknights: Endfield operators in a formatted list.">
<title>Arknights: Endfield Operator Sorter</title>
<link rel="stylesheet" type="text/css" href="src/css/reset.css">
<link rel="stylesheet" type="text/css" href="src/css/styles.css">
<script src="src/js/data.js"></script>
<script src="src/js/data/2023-11-10.js"></script>
<script src="src/js/html2canvas.min.js"></script>
<script src="src/js/lz-string.min.js"></script>
<script src="src/js/seedrandom.min.js"></script>
<script src="src/js/main.js"></script>
<script src="src/js/darkmode.js"></script>
<!--
<link href="/dist/svelte-bundle.css" rel="stylesheet" />
<script defer src="/dist/svelte-bundle.js"></script>
-->
</head>
<body>
<div class="container">
<div class="progress">
<span class="progressbattle"></span>
<div class="progressbar">
<div class="progressfill"><span class="progresstext"></span></div>
</div>
</div>
<div class="sorter">
<img src="src/assets/default.png" class="left sort image">
<div class="starting start button">Arknights: Endfield Operator Sorter<br><br>Click to Start!</div>
<div class="starting load button">Load <span></span></div>
<div class="loading button"><div></div><span>Loading...</span></div>
<div class="sorting tie button">Tie</div>
<div class="sorting undo button">Undo</div>
<div class="sorting save button">Save Progress</div>
<div class="finished save button">Generate Result URL</div>
<div class="finished getimg button">Generate Image</div>
<div class="finished list button">Generate Text List</div>
<img src="src/assets/default.png" class="right sort image">
<div class="left sort text"><p></p></div>
<div class="right sort text"><p></p></div>
</div>
<div class="options"></div>
<div class="image selector">Display Images on Result: </div>
<div class="time taken"></div>
<div class="results"></div>
<div class="info">
<a class="clearsave">Clear Save Data</a>
<br><br>
<p>Sorter website for Arknights: Endfield operators.</p>
<p>Pick your sources, and hit the Start button.</p>
<p>Click on the Operator you like better from the two, or tie them if you like them equally or don't know them.</p>
<br>
<p>Keyboard controls during sorting:<br> H/LeftArrow (pick left), J/DownArrow (undo), K/UpArrow (tie)<br>L/RightArrow (pick right), S (save progress).</p>
<p>Before sorting:<br>S/Enter (start sorting) L (load progress).
<p>1/2/3 always correspond to the first/second/third buttons.</p>
<br>
<!-- <a href="/id.html">Pergi ke versi Bahasa Indonesia</a>
<br><br> -->
<p>Maintained by <a href="https://www.ufal.my.id">Ufal Salman</a></p>
<p>The source code is available on <a href="https://github.com/ritokatsuga/endfieldsort">this repository</a></p>
<p>Based on <a href="https://tohosort.frelia.my/">execfera's Touhou sorter</a></p><br>
<p>Other sorters that available on <a href="https://sorter.ufal.my.id">sorter.ufal.my.id</a></p>
<p><a href="https://gakumas.sorter.ufal.my.id">Gakuen iDOLM@STER</a> | <a href="https://exastris.sorter.ufal.my.id">Ex Astris</a> | <a href="https://starrail.sorter.ufal.my.id">Honkai: Star Rail</a><br><a href="https://zzz.sorter.ufal.my.id">Zenless Zone Zero</a> | <a href="https://hololive.sorter.ufal.my.id">hololive production</a> | <a href="https://nijisanji.sorter.ufal.my.id">NIJISANJI</a></p>
<br>
<p>Latest changelog:</p>
<p>10 November 2023 - Started the project.</p><br>
<p><a href="/changelogs.html">Previous changelogs</a> | <a href="https://endfield.sorter.my.id/?IwNgnGICwKxfB2KYA+wAcUDMAmNwAGIwwg4ElMgoA">Great Taste</a></p>
<br>
<p>If you encounter any issues, hit me up <a href="https://github.com/ritokatsuga/endfieldsort/issues">here</a>.</p>
<br>
</div>
</div>
</body>
</html>