-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
43 lines (43 loc) · 1.11 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
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>jQuery Code Scanner - Demo</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"/>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="jquery-code-scanner.js"></script>
<style>
body {
color: #bbb;
background-color: #444;
font-family: "Century Gothic", Arial, sans-serif;
}
.container {
margin-top: 160px;
}
h1 {
margin-bottom: 40px;
}
</style>
<script>
$(function () {
$('#code-scan').codeScanner();
});
</script>
</head>
<body>
<div class="container">
<h1>jQuery Code Scanner</h1>
<div class="row">
<form class="form-horizontal col-sm-offset-4 col-sm-4">
<div class="form-group">
<label class="control-label col-xs-6" for="code-scan">Scanned code</label>
<div class="col-xs-6">
<input class="form-control" id="code-scan" type="text" />
</div>
</div>
</form>
</div>
</div>
</body>
</html>