-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·101 lines (86 loc) · 2.19 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.nodeText {
background: #91877b;
text-shadow: 0 11px 10 rgba(255, 255, 255, 1);
}
.node {
stroke: #fff;
stroke-width: 1px;
stroke-opacity: 0.6;
}
.link {
stroke: #555;
stroke-opacity: .9;
}
.linkArc {
fill: none;
stroke: #000;
}
.node text {
font: 9px helvetica;
}
<!-- For the slider -->
.axis {
font: 5 sans-serif;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.axis .domain {
fill: none;
stroke: #000;
stroke-opacity: .25;
stroke-width: 5px;
stroke-linecap: round;
}
.axis .halo {
fill: none;
stroke: #ddd;
stroke-width: 3px;
stroke-linecap: round;
}
.slider .handle {
fill: #666;
stroke: #000;
stroke-opacity: .25;
stroke-width: 1px;
cursor: crosshair;
}
h3 {
color: #1ABC9C;
text-align:center;
font-style: italic;
font-size: 14px;
font-family: "Helvetica";
}
</style>
<body>
<!--!<button onclick="detactTimeSeries()">Unroll time series </button>!-->
<input type="checkbox" id="checkbox1" value="value2" class="check" onclick="update()">
<label for="checkbox1">Area graph only</label>
<input id="search">
<button type="button" onclick="searchNode()">Search</button>
<progress value="0" max="100" id="progBar">
<span id="downloadProgress">
<!-- Your fallback goes here -->
</span>
</progress>
<label id="progUpdate">
<!-- Success Message -->
</label>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="javascripts/d3.v3.min.js"></script>
<script src="javascripts/select2.min.js"></script>
<script src="myscripts/sliderRelationship.js"></script>
<script src="myscripts/stopList.js"></script>
<script src="myscripts/main.js"></script>
<script type='text/javascript' src="http://code.jquery.com/ui/1.11.0/jquery-ui.min.js"> </script>
<link href="styles/jquery-ui.css" rel="stylesheet" type="text/css" />
<button onclick="saveTimeArcsData()">Save data for TimeArcs</button>
<script src="myscripts/searchBox.js"></script>
Time axis goes from left (2005) to right (2014)<br>
Terms often appeared together in a blog are connected by a thicker link.<br>
</body>