This repository has been archived by the owner on Oct 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (39 loc) · 1.62 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
<html>
<head>
<title> Comparing Bill Introductions in the US states </title>
<meta charset="utf-8">
<!--Frameworks-->
<script
src="http://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script
src="https://code.jquery.com/ui/1.12.0/jquery-ui.min.js"
integrity="sha256-eGE6blurk5sHj+rmkfsGYeKyZx3M4bG+ZlFyA7Kns7E="
crossorigin="anonymous"></script>
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<!--Styles-->
<!--<link type="text/css" rel="stylesheet" href="../jqueryfiles/jquery-ui_redmond_theme.css">-->
<link href='http://fonts.googleapis.com/css?family=Josefin+Sans' rel='stylesheet' type='text/css'>
<link type="text/css" rel="stylesheet" href="BillsFiledComparison.css">
</head>
<body>
<div>
<h3> Bills Filed in the State Legislatures </h3>
</div>
<div>
Distortion <select id="toggleDistort"></select>
</div>
<div>
<svg height="400" width="100%" id="mapUS"> </svg>
</div>
<div>
<p id="source"> Sources: Natural Earth (shapefiles); http://prag.ma/code/d3-cartogram/cartogram.js (cartogram plugin); http://www.shpescape.com/mix/ (Shapefile to TopoJSON conversion) </p>
</div>
<script type="text/javascript" src="Admin1_states_topoJSON.js"> </script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script type="text/javascript" src="cartogram.js"> </script>
<script type="text/javascript" src="billsFiledData.js"></script>
<script type="text/javascript" src="billsFiledComparison.js"></script>
</body>
</html>