-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
75 lines (65 loc) · 2.08 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
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<title>My Camera</title>
<link rel="Stylesheet" href="css/bootstrap.css" />
<link rel="Stylesheet" href="css/style.css" />
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<h2 class="brand">Html5 Photobooth</h1>
<a id="record-vid" class="btn btn-success pull-right hide">Start Recording</a>
<a id="stop-record-vid" class="btn btn-danger pull-right hide">Stop Recording</a>
<a id="filter-toggle" class="btn pull-right">Filters</a>
<a id="take-pic" data-toggle="button" class="btn btn-primary pull-right">Take Picture</a>
</div>
</div>
</div>
<div class="container" id="body-wrap">
<div class="container" id="main">
<div class="span10">
<div id="video-container">
<div id="counter"></div>
</div>
<div id="pic-holder" class="pull-right"></div>
</div>
</div>
</div>
<div id="filter-wrapper" class="container collapsed">
<table>
<tr>
<td>Filter:<select id="filter-type"></select></td>
</tr>
</table>
<table id="filter-value-table">
</table>
</div>
<table class="hide">
<tr>
<th>Refresh Rate:</th>
<td id="refresh-rate"><td>
</tr>
<tr>
<th>Mirroing:</th>
<td id="debug-mirror"><td>
</tr>
</table>
<!--
<div id="filter-selector" class="btn-group btn-group-vertical" data-toggle="buttons-radio">
<button type="button" class='btn active'>None</button>
<button type="button" class='btn' data-filter="grayscale">Grayscale</button>
</div>
-->
<script src="http://cdnjs.cloudflare.com/ajax/libs/lodash.js/0.5.2/lodash.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/pixastic.custom.js"></script>
<script src="js/camera.js"></script>
<script src="js/filters.js"></script>
<script src="js/filterView.js"></script>
<script src="js/script.js"></script>
</body>
</html>