-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
62 lines (57 loc) · 1.82 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
<!DOCTYPE html>
<meta charset='utf-8'>
<title>NJ.com Data Team</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/d3v4.js"></script>
<script src="js/pym.js"></script>
<body>
<div class='big-container njam-container'>
<div class='intro-text'>
<h1>NJ.com Data & Interactives</h1>
<p class='intro-text'>We put together a tool that helps you to understand how New Jersey has changed — by making you guess your way to it. Drag the line to the opposite side to find out how your guesses compare to actual data from the Census.</p>
</div>
<div class='min-container'>
<div id="housevalues"></div>
<script>
var pymParent = new pym.Parent('housevalues', 'index_housevalues.html', {});
</script>
</div>
<div class='min-container'>
<div id="income"></div>
<script>
var pymParent = new pym.Parent('income', 'index_income.html', {});
</script>
</div>
<div class='min-container'>
<div id="pop"></div>
<script>
var pymParent = new pym.Parent('pop', 'index_pop.html', {});
</script>
</div>
<div class='min-container'>
<div id="hisp"></div>
<script>
var pymParent = new pym.Parent('hisp', 'index_hispanic.html', {});
</script>
</div>
<div class='min-container'>
<div id="emp"></div>
<script>
var pymParent = new pym.Parent('emp', 'index_unemployment.html', {});
</script>
</div>
<div class='min-container'>
<div id="birth"></div>
<script>
var pymParent = new pym.Parent('birth', 'index_births.html', {});
</script>
</div>
<div class='min-container'>
<div id="heroin"></div>
<script>
var pymParent = new pym.Parent('heroin', 'index_heroin.html', {});
</script>
</div>
</div>
</body>