-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
147 lines (145 loc) · 5.71 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Census Tracks | City of Detroit</title>
<meta name="description" content="Application to help understands the census tracks within City of Detroit">
<meta name="author" content="Edgar Montes">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
<!--build:css css/styles.min.css-->
<link rel="shortcut icon" type="image/png" href="img/favicon.ico"/>
<!--endbuild-->
</head>
<body>
<section id="app-container">
<div class="sc-gauge active">
<button>x</button>
<div class="sc-background">
<div class="sc-percentage"></div>
<div class="sc-mask"></div>
<span class="sc-value">0</span>
</div>
<span class="sc-title">2020 Response Rate</span>
<span class="sc-min">0</span>
<span class="sc-max">75</span>
</div>
<section id="user-type-section" class="active">
<article class="user-type-container">
<div class="">
<article class="user-type">
<h4>Welcome to the City of Detroit Census Map</h4>
<p>The map will help you understand the complexity of the census.</p>
<article class="user-type-btns">
<button type="button" name="button" data-btn-type="v-sign-up">START</button>
</article>
</article>
</div>
</article>
</section>
<section id="initial-loader-overlay" class="">
<article>
<div>
<div class="loader">
<div class="loader__bar"></div>
<div class="loader__bar"></div>
<div class="loader__bar"></div>
<div class="loader__bar"></div>
<div class="loader__bar"></div>
<div class="loader__ball"></div>
</div>
<p>LOADING</p>
</div>
</article>
</section>
<section id="alert-overlay" class="">
<article>
<span class="close">x</span>
<div></div>
</article>
</section>
<section id="drill-down-overlay" class="">
<article>
<span class="close">x</span>
<div></div>
</article>
</section>
<section class="application hidden">
<section class="data-panel">
<button class="close-btn" id="close-panel-btn"><i class="fas fa-angle-left"></i> Back</button>
<section class="content-section"></section>
</section>
<section class="map-panel">
<article id="map"></article>
<article id="geocoder"></article>
<section class="filters">
<button id="close-filters-btn" class="close-btn"><i class="fas fa-angle-left"></i> Back</button>
<h5>Filter Census Information</h5>
<article>
<button id="hardest-filter-btn" class="filter-btn">x</button>
<label for="hardest">By Hardest to Count:</label>
<select id="hardest" class="interactive-filters">
<option value="null" selected></option>
<option value="73-100">> 73 - 100</option>
<option value="70-73">> 70 - 73</option>
<option value="65-70">> 65 - 70</option>
<option value="60-65">> 60 - 65</option>
<option value="20-60">20 - 60</option>
</select>
</article>
<article>
<button id="low-response-filter-btn" class="filter-btn">x</button>
<label for="low-response">By Non-response Score:</label>
<select id="low-response" class="interactive-filters">
<option value="null" selected></option>
<option value="28+">Greater than 28%</option>
<option value="28-">Less than 28%</option>
</select>
</article>
<article>
<button id="population-filter-btn" class="filter-btn">x</button>
<label for="population">By Population:</label>
<select id="population" class="interactive-filters">
<option value="null" selected></option>
<option value="1500">Over 1,500</option>
<option value="2000">Over 2,000</option>
</select>
</article>
<article>
<button id="no-internet-filter-btn" class="filter-btn">x</button>
<label for="no-internet">By % of Homes without Internet:</label>
<select id="no-internet" class="interactive-filters">
<option value="null" selected></option>
<option value="86+">> 86</option>
<option value="60-86">>60 - 86</option>
<option value="40-60">>40 - 60</option>
<option value="20-40">>20 - 40</option>
<option value="0-20">0 - 20</option>
</select>
</article>
</section>
<button id="filters"><i class="fas fa-filter"></i> Filters</button>
<section id="legend">
<p><strong>Response Rate %</strong></p>
<article class="legend-colors">
<div class="legend-item rate-low"></div>
<div class="legend-item rate-20"></div>
<div class="legend-item rate-30"></div>
<div class="legend-item rate-40"></div>
<div class="legend-item rate-50"></div>
<div class="legend-item rate-60"></div>
</article>
<article class="legend-labels">
<div class="legend-item">0-20</div>
<div class="legend-item">20s</div>
<div class="legend-item">30s</div>
<div class="legend-item">40s</div>
<div class="legend-item">50s</div>
<div class="legend-item">60-100</div>
</article>
</section>
</section>
</section>
</section>
<script src="index.js"></script>
</body>
</html>