-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (58 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="./index.js" defer></script>
<link rel="stylesheet" href="./index.css">
<title>Kanji Search</title>
</head>
<body>
<div id="main">
<h1 id="header">Kanji Search (based on <a target="_blank"
href="https://github.com/Kuuuube/yomitan-dictionaries?tab=readme-ov-file#jpdb-v22-frequency-1">JPDB</a>
frequency list)</h1>
<div>
<div>
<label id="kanji-list-label" for="kanji-list-input">Kanji List</label>
</div>
<input type="search" id="kanji-list-input">
</div>
<div id="filter">
<div class="filter-item">
<label for="other-kanji-count-input">Other kanji count <strong>(any: -1)</strong></label>
<input type="number" id="other-kanji-count-input" value="0">
</div>
<div class="filter-item">
<label for="reading-search-input">Reading</label>
<div class="row">
<input type="text" id="reading-search-input">
<select id="reading-match-select">
<option value="include">Include</option>
<option value="exact">Exact</option>
<option value="not-include">Not include</option>
</select>
</div>
</div>
<div class="filter-item">
<label>Kanji only</label>
<input type="checkbox" id="kanji-only-checkbox">
</div>
<div class="filter-item">
<label>Search mode</label>
<select id="search-mode-select">
<option value="any">Includes any</option>
<option value="all">Includes all</option>
<option value="none">Includes none</option>
</select>
</div>
</div>
<button type="button" id="search" hidden>Search</button>
<div id="stats"></div>
<div id="stats-note" hidden>*having at least 1 kanji</div>
<div id="export-txt" hidden>Export TXT</div>
<progress id="progress" hidden></progress>
<div id="list"></div>
</div>
</body>
</html>