-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
27 lines (24 loc) · 880 Bytes
/
index.htm
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
<html>
<head>
<title>Event Detection</title>
<link type="text/css" href="./css/stylish.css" rel="stylesheet"/>
</head>
<body>
<canvas id="CANVAS"></canvas>
<div id="CONSOLE_CONTAINER">
Unique Detected Events: <span id="EVENT_COUNT">0</span><br/>
Event Detection Time: ~<span id="ALG_TIME">0</span> ms<br/>
Number Waypoints Checked: <span id="NUM_WAYPOINTS">0</span><br/>
Browser Draw Time: ~<span id="DRAW_TIME">0</span> ms<br/>
<div id="CONSOLE_MESSAGES">
<table id="CONSOLE_TABLE" cellpadding="3" width="100%">
</table>
</div>
<div id="CONTROLS_CONTAINER">
<input id="CLEAR_CONSOLE_BUTTON" type="button" value="Reset Display"></input>
</div>
</div>
<script type="text/javascript" src="./js/ext/jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="./js/build/eventdetection.min.js"></script>
</body>
</html>