-
Notifications
You must be signed in to change notification settings - Fork 1
/
toolslist.html
59 lines (59 loc) · 3.03 KB
/
toolslist.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
<!DOCTYPE html>
<html lang="ja-JP">
<head>
<title>SBmod_box - mod一覧</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Expires" content="604800">
<link rel=”canonical” href=”https://dmmo-com-jp.github.io/SBmod_box/index.html”>
<link rel="icon" href="images/favicon.ico" />
<link rel="icon" href="images/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" type="image/png" href="images/apple-touch-icon.png">
<meta name="description" content="ビル経営ゲームのmodをまとめています。ダウンロードしてスプライトをアップロードすれば簡単に導入出来ます!">
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<header id="navbar"></header>
<main class="flex flex-col justify-start items-center gap-5 max-w-[800px] w-full min-h-screen h-full m-auto my-10">
<div>
<label for="search-input">検索:</label>
<input type="text" id="search-input" oninput="searchMods()" placeholder="mod名を入力">
</div>
<div>
<p>絞り込み:
<label>
<input type="checkbox" value="all" onchange="filterMods(this.checked)" checked><span>すべて</span>
</label>
<label>
<input type="checkbox" value="sevecode" id="check-notall" onchange="filterMods(this.checked)"><span>セーブコード変換</span>
</label>
<label>
<input type="checkbox" value="creative" id="check-notall" onchange="filterMods(this.checked)"><span>クリエイティブ</span>
</label>
<label>
<input type="checkbox" value="debug" id="check-notall" onchange="filterMods(this.checked)"><span>デバッグ</span>
</label>
<select name="version">
<option value="all">指定しない</option>
<option value="ver5">ver5</option>
<option value="ver6">ver6</option>
<option value="ver7">ver7</option>
</select>
</p>
</div>
<div class="modlist"></div>
<script src="https://utteranc.es/client.js"
repo="dmmo-com-jp/SBmod_box"
issue-term="pathname"
theme="github-light"
crossorigin="anonymous"
async>
</script>
</main>
</body>
<script src="scripts/list/contents/toollist.js"></script>
<script src="scripts/list/index.js"></script>
<script src="scripts/navbar.js"></script>
</html>