-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.89 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.89 KB
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ランダムQRコード生成器</title>
<link rel="stylesheet" href="css/styles.css">
<script src="js/qrcodegen-v1.8.0-es6.js"></script>
</head>
<body>
<div class="section left">
<h2><a href="https://kokorogu.com/new-denpa-11">体格テーブル</a></h2>
<iframe src="table.html" width="100%" height="100%" frameborder="0"></iframe>
</div>
<div class="section center">
<h1>電波人間用ランダムQRコード生成</h1>
<p><a href="https://github.com/yukine8/denpa-qr-generator">ソースコード</a></p>
<p>長さが126のランダムな文字列をQRコードにします</p>
<p>MITライセンスのもとで提供しており、自由に使用・改変・再配布できます</p>
<p class="pc">EnterかSpaceを押して再生成、Sを押して画像を保存</p>
<p class="pc">右の履歴をクリックしてQRコードを再表示</p>
<p class="mobile">下の履歴をクリックしてQRコードを再表示</p>
<div>
<input type="radio" id="top" name="position" value="flex-start" checked>
<label for="top">上</label>
<input type="radio" id="center" name="position" value="center">
<label for="center">真ん中</label>
<input type="radio" id="bottom" name="position" value="flex-end">
<label for="bottom">下</label>
</div>
<div id="qrcode"></div>
<p id="qr-text"></p>
<button id="regenerate-btn">QRコードを再生成</button>
<button id="save-btn">QRコードを保存</button>
</div>
<div class="section right">
<h2>履歴</h2>
<ul id="history"></ul>
</div>
<script src="js/script.js"></script>
</body>
</html>