-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (40 loc) · 1.57 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
<!DOCTYPE html>
<html lang="jp">
<head>
<meta charset="UTF-8">
<!-- for Mobile Devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- キャッシュ禁止措置 -->
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<!-- クロール禁止措置 -->
<meta name="robots" content="noindex,nofollow">
<!-- スクリプト読み込み -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script type="application/javascript" src="js/JOB.js"></script>
<script type="application/javascript" src="js/main.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<title>BarCodeTest</title>
</head>
<body>
<div id="container">
<h1>電工研ポイント管理test</h1>
<canvas width="320" height="240" id="picture" style="display:none;"></canvas>
<div class="upload_btn">
<label for="Take-Picture" id="taker">読み込み
<input id="Take-Picture" type="file" accept="image/*;capture=camera" style="display: none;">
</label>
</div>
<div class="pt_select">
<label for="Value" class="point">Point:</label>
<input id="Value" type="number" required>
<label for="Value" class="point">pt</label>
</div>
<h4>読み取り情報</h4>
<p id="textbit"></p>
<h4>書き込み情報</h4>
<div id="log"></div>
</div>
</body>
</html>