-
Notifications
You must be signed in to change notification settings - Fork 0
/
school-bubble.html
77 lines (72 loc) · 3.87 KB
/
school-bubble.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CS594 UIC: CPS</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="./css/starter-template.css" rel="stylesheet">
<!--<link href="./css/style.css" rel="stylesheet" />-->
<link href="./css/bubbles.css" rel="stylesheet" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha512-puBpdR0798OZvTTbP4A8Ix/l+A4dHDD0DGqYW6RQ+9jxkRFclaxxQb/SJAWZfWAkuyeQUytO7+7N4QKrDh+drA==" crossorigin="" />
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha512-nMMmRyTVoLYqjP9hrbed9S+FzjZHW5gY1TWCHA5ckwXZBadntCNs8kEqAWdrb9O7rxbCaA4lKTIWjDXZxflOcA==" crossorigin=""></script>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">CPS Data-driven Visualizations</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="school-map.html">Map</a></li>
<li class="active"><a href="school-bubble.html">School Demographies</a></li>
<li><a href="school-networks.html">School Networks</a></li>
<li><a href="school-per-year.html">Schools Per Year</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container" style="width:100%;">
<div class="row1">
<div class="column1">
<span>
<label>Demography: <select id="demography"></select></label>
</span>
</div>
<div class="column2">
<div class="sub-col1">
<label for="year">
Showing data for year:
<input type="text" id="year" readonly style="border:0; color:#f6931f; width:34px; font-weight:bold;">
</label>
</div>
<div class="sub-col2" id="slider-bubble"></div>
<div class="clearfix"></div>
</div>
<div class="clearfix"></div>
</div>
<span>
<label><input id="combine" type="radio" name="grouping" value="combine" checked>Bird's-eye view</label>
<label><input id="population" type="radio" name="grouping" value="population">Sorted view</label>
</span>
<div id="school-info"></div>
<div id="bubble-chart"></div>
<p>Bubble-size adjusts by no. of schools displayed.</p>
</div><!-- /.container -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-queue.v3.min.js"></script>
<script src="js/data/cps-schema.js"></script>
<script src="js/models/model.js"></script>
<!--<script src="js/slider.js"></script>-->
<script src="js/slider.js"></script>
<script src="js/controllers/school-bubble-controller.js"></script>
<script src="js/views/school-bubbles.js"></script>
</body>
</html>