-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (39 loc) · 989 Bytes
/
index.html
File metadata and controls
64 lines (39 loc) · 989 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style>
.queryResult
{
font:12px helvetica,sans-serif;
display: inline-block;
}
.queryInput
{
font:12px helvetica,sans-serif;
display: inline-block;
}
</style>
<!--
.timeline
{
pointer-events:none;
}
-->
<!-- Query field -->
<script type="text/javascript" src="js/jquery.js"></script>
<!-- Load the Paper.js library -->
<script type="text/javascript" src="js/paper.js"></script>
<!-- other helpers -->
<script type="text/javascript" src="js/CSVToArray.js"></script>
<!-- Define inlined PaperScript associate it with myCanvas -->
<script type="text/paperscript" src="js/timeline.js" canvas="myCanvas">
</script>
</head>
<body>
<div class="inputbar">
<input class="queryInput" type="text" name="query" id="query" value="" autocomplete="off" autofocus>
<div class="queryResult" id="queryResult"></div>
</div>
<canvas class="timeline" id="myCanvas" width="1824" height="1624"></canvas>
</body>
</html>