forked from execfera/charasort
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
92 lines (69 loc) · 3.84 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
<html>
<head>
<link rel="shortcut icon" href="src/assets/yinyang.ico" type="image/x-icon">
<link rel="icon" href="src/assets/yinyang.ico" type="image/x-icon">
<meta charset="utf-8">
<meta name="og:site_name" content="Neptunia Character Sorting">
<meta name="og:description" content="A simple website for sorting Neptunia characters in a formatted list.">
<meta name="og:image" content="https://i.imgur.com/IZzJMk6.jpg">
<title>Neptunia Character Sorting</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/2018-02-22.js"></script>
<script src="src/js/data/2021-04-15.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>
</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/defaultL.png" class="left sort image">
<div class="starting start button">Hyperdimension Neptunia 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/defaultR.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 href="mailto:contact@jamessliu.com">Contact</a> | <a href="https://github.com/james7132/charasort/">Source Code</a> | <a class="clearsave">Clear Save Data</a>
<br><br>
<p>Sorter for Neptunia characters. Pick your sources, and hit the Start button.</p>
<p><strong>Certain options have details that you can hover to read.</strong></p>
<p>Click on the character you like better from the two, or tie them if you like them equally or don't know them.</p>
<p>Depending on how many sources you pick, you'll get up to 400+ picks, so set aside a good few cups of tea for this.</p>
<br><br>
<p>Keyboard controls during sorting: H/LeftArrow (pick left) J/DownArrow (undo) K/UpArrow (tie) L/RightArrow (pick right) S (save progress).</p>
<p>Before sorting: S/Enter (start sorting) L (load progress).
<p>1/2/3 always correspond to the first/second/third buttons.</p>
<br><br>
<p>Inspired by <a href="http://mainyan.sakura.ne.jp/thsort.html">this site</a>.</p>
<br><br>
<p>April 15th, 2021 - Various fixes, additions, removals, etc.</p>
<p>February 22nd, 2018 - Forked for Neptunia Characters</p>
<p>February 21st, 2018 - Refactored site. Autosave, shareable URLs, keyboard controls. Unfortunately, this update breaks support for older mobile Safari users. Get a better device or use a desktop.</p>
<p>January 7th, 2018 - Added Antinomy of Common Flowers characters.</p>
<p>August 11th, 2017 - Added Hidden Star in Four Seasons full version characters.</p>
</div>
</div>
</body>
</html>