forked from hichristo/justice-is-digital
-
Notifications
You must be signed in to change notification settings - Fork 0
/
case1-3.html
127 lines (101 loc) · 4.03 KB
/
case1-3.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html>
<head>
<!-- Standard Meta -->
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<!-- Site Properties -->
<title>MoJ Data Insight</title>
<script src="semantic/assets/library/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="semantic/components/reset.css">
<link rel="stylesheet" type="text/css" href="semantic/components/site.css">
<link rel="stylesheet" type="text/css" href="semantic/components/container.css">
<link rel="stylesheet" type="text/css" href="semantic/components/grid.css">
<link rel="stylesheet" type="text/css" href="semantic/components/header.css">
<link rel="stylesheet" type="text/css" href="semantic/components/image.css">
<link rel="stylesheet" type="text/css" href="semantic/components/menu.css">
<link rel="stylesheet" type="text/css" href="semantic/components/divider.css">
<link rel="stylesheet" type="text/css" href="semantic/components/list.css">
<link rel="stylesheet" type="text/css" href="semantic/components/segment.css">
<link rel="stylesheet" type="text/css" href="semantic/components/dropdown.css">
<link rel="stylesheet" type="text/css" href="semantic/components/icon.css">
<link rel="stylesheet" type="text/css" href="semantic/components/form.css">
<link rel="stylesheet" type="text/css" href="semantic/components/transition.css">
<link rel="stylesheet" type="text/css" href="semantic/components/button.css">
<link rel="stylesheet" type="text/css" href="semantic/components/search.css">
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="semantic/components/form.js"></script>
<script src="semantic/components/dropdown.js"></script>
<script src="semantic/components/transition.js"></script>
<script src="semantic/components/api.js"></script>
<script src="semantic/components/search.js"></script>
<style type="text/css">
body {
background-color: #FFFFFF;
}
.ui.menu .item img.logo {
margin-right: 1.5em;
}
.main.container {
margin-top: 7em;
}
.wireframe {
margin-top: 2em;
}
.ui.footer.segment {
margin: 5em 0em 0em;
padding: 5em 0em;
}
</style>
<script>
$(document)
.ready(function () {
$('.ui.dropdown')
.dropdown()
;
})
;
$.get('graph1.html')
.success(function (data) {
$('div.chart1').html(data);
});
$.get('kde1.html')
.success(function (data) {
$('div.chart2').html(data);
});
$.get('barchart1.html')
.success(function (data) {
$('div.chart3').html(data);
});
</script>
</head>
<body>
<div class="ui fixed inverted menu">
<div class="ui container">
<a href="index2.html" class="header item">
<img class="logo" src="semantic/assets/images/moj.png">
Data Insight
</a>
</div>
</div>
<div class="ui main text container">
<h1 class="ui header">Data Insight</h1>
<div class="ui floating search dropdown button">
<span class="text">Select visualisation</span>
<div class="menu">
<div class="item"><a href="case1-1.html">Graph</a></div>
<div class="item"><a href="case1-2.html">Kernel Density</a></div>
<div class="item"><a href="case1-3.html">Bar</a></div>
</div>
</div>
<div class="ui vertical stripe segment">
<div class="ui text container">
<div class="ui header">8991549 / 1 October 2010</div>
<div class="ui sub header">Theft from a shop / TH6801</div>
<div class="chart3"></div>
</div>
</div>
</div>
</body>
</html>