-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 1.7 KB
/
index.html
File metadata and controls
49 lines (49 loc) · 1.7 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
43
44
45
46
47
48
49
<html>
<head>
<title>Blink</title>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://download.affectiva.com/js/3.2/affdex.js"></script>
<script src="https://cdn.bootcss.com/echarts/4.1.0.rc2/echarts.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css" />
<link rel="stylesheet" href="blink.css" />
</head>
<body>
<div class="container">
<div class="row top">
<div class="col-md-8 left">
<div id="camera"></div>
</div>
<div class="col-md-4 right">
<h4>Blinks</h4>
<div id="game">
<div id="target">?</div>
<div id="score">?</div>
</div>
<div id="controls">
<button id="start" onclick="onStart()">Start</button>
<button id="stop" onclick="onStop()">Stop</button>
<button id="reset" onclick="onReset()">Reset</button>
</div>
<div id="appearance">
</div>
</div>
</div>
<div class="row bottom">
<div class="col-md-8 left" id="instructions">
<div id="results-container">
<div id="results"></div>
</div>
</div>
<div class="col-md-4 right">
<div id="logs-container">
<h5>DETECTOR LOG MSGS</h5>
<p id="logs"></div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="blink.js"></script>
</body>
</html>