-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
69 lines (69 loc) · 2.55 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
<!DOCTYPE html>
<html>
<head lang="ja">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mantela Viewer</title>
<meta name="description" content="Mantela によって記述された VoIP 電話網の繋がりを可視化する曼荼羅を生成します。">
<meta name="twitter:card" content="summary">
<meta name="twitter:creator" content="@KusaReMKN">
<meta property="og:title" content="Mantela Viewer">
<meta property="og:type" content="website">
<meta property="og:url" content="https://kusaremkn.github.io/mantela-viewer/">
<meta property="og:description" content="Mantela によって記述された VoIP 電話網の繋がりを可視化する曼荼羅を生成します。">
<meta property="og:locale" content="ja_JP">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/light.css">
<link rel="stylesheet" href="./mantela.css">
<script src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js" defer></script>
<script src="./mantela.js" defer></script>
</head>
<body>
<header>
<h1>Mantela Viewer</h1>
<p>
<a rel="external" href="https://github.com/KusaReMKN/mantela">Mantela</a> によって記述された VoIP 電話網の繋がりを可視化する曼荼羅を生成します。
</p>
</header>
<main>
<section id="secMantela">
<h2>最初の Mantela を指定</h2>
<p>
VoIP 電話網の起点となる Mantela を指定してください。
</p>
<form id="formMantela">
<fieldset>
<legend>初期設定</legend>
<div>
<label for="urlMantela">mantela.json の URL:</label>
<input type="url" id="urlMantela" name="first" required class="fill-inline">
</div>
<div>
<label for="checkNest">交換局のホップ数を制限する:</label>
<input type="checkbox" id="checkNest">
</div>
<div>
<label for="numNest">最大ホップ数:</label>
<input type="number" id="numNest" min="0" step="1" class="fill-inline">
</div>
<hr>
<div>
<input type="submit" id="btnGenerate" value="Mantela を生成..." class="fill-inline">
</div>
<div>
<output id="outputStatus">mantela.json の URL を入力して「Mantela を生成...」を押下してください</output>
</div>
</fieldset>
</form>
</section>
<hr>
<section id="secMandala" class="container">
<h2>電話網の曼荼羅</h2>
<div id="divMantela" class="mantela"></div>
</section>
</main>
<footer>
Copyright © 2024–2025 KusaReMKN, and <a rel="external" href="https://github.com/KusaReMKN/mantela-viewer/graphs/contributors">contributors</a>.
<a rel="external" href="https://github.com/KusaReMKN/mantela-viewer">Fork me on GitHub!</a>
</footer>
</body>
</head>