-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (85 loc) · 4.58 KB
/
index.html
File metadata and controls
105 lines (85 loc) · 4.58 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Interactive Labor</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> -->
<meta charset="utf-8">
<!-- Load Styles -->
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href='https://api.mapbox.com/mapbox.js/v3.3.1/mapbox.css'/>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"/>
<link rel="stylesheet" href="https://use.typekit.net/spw0cvk.css">
</head>
<body>
<div class="body-container">
<a href="#show" class="button" id="showButton">+</a>
<div class="sidebar">
<a href="#hide" class="button" id="hideButton">x</a>
<div class="intro">
<h1 id="title">The United States of </h1>
<h2 id="title">Solidarity</h2>
<div id="descriptionText">
<p>The American labor movement may seem to some to have sprung from a handful of large, histoircally working-class cities like Boston, New York, Chicago and San Francisco. If we dig a little deeper into a variety of data however, we can quickly see a much richer portrait of the efforts of laborers and activists throughout American history.</p>
<p>This map explores AFL-CIO milestones, Labor Heritage Foundation labor landmarks, IWW chapters and activity from 1906-1920, work stoppages with more than 1,000 workers from 1993-2021 reported by the U.S. Bureau of Labor Statistics, and US-based tech industry collective organizing efforts from 1973-2021.</p>
</div>
<div id="key">
<div class="pin">
<img src="./images/strikeIcon.png" id="strikeIcon">
<label class="strikes"for="strikes">
<span class="tags">Strikes</span><a href="https://www.bls.gov/web/wkstp/monthly-listing.htm" id="footnote" target="_blank">1</a>
</label>
<input type="checkbox" id="strikes" name="strikes" checked>
</div>
<div class="pin">
<img src="./images/orgIcon.png" id="orgIcon">
<label for="orgs">
<span class="tags">Organizations</span><a href="https://depts.washington.edu/iww/locals.shtml" id="footnote" target="_blank">2</a>
</label>
<input type="checkbox" id="orgs" name="orgs" checked>
</div>
<div class="pin">
<img src="./images/eventIcon.png" id="eventIcon">
<label for="events">
<span class="tags">Historic events</span><a href="https://aflcio.org/about-us/history" id="footnote" target="_blank">3,</a><a href="https://depts.washington.edu/iww/yearbook_intro.shtml" id="footnote" target="_blank">4</a>
</label>
<input type="checkbox" id="events" name="events" checked>
</div>
<div class="pin">
<img src="./images/leaderIcon.png" id="leaderIcon">
<label for="leaders">
<span class="tags">Leadership</span><a href="https://aflcio.org/about-us/history" id="footnote" target="_blank">5</a>
</label>
<input type="checkbox" id="leaders" name="leaders" checked>
</div>
<div class="pin">
<img src="./images/techIcon.png" id="techIcon">
<label for="tech">
<span class="tags">Tech collective action</span><a href="https://collectiveaction.tech/" id="footnote" target="_blank">6</a>
</label>
<input type="checkbox" id="tech" name="tech" checked>
</div>
<div class="pin">
<img src="./images/landIcon.png" id="landIcon">
<label for="landmarks">
<span class="tags">Labor landmarks</span><a href="https://www.laborheritage.org/inventory-of-american-labor-landmarks/" id="footnote" target="_blank">7</a>
</label>
<input type="checkbox" id="landmarks" name="landmarks" checked>
</div>
</div>
</div>
</div>
<div id="map"></div>
</div>
<!-- Load Leaflet code library - see updates at http://leafletjs.com/download.html -->
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<!-- Load jQuery and PapaParse to read data from a CSV file -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/papaparse@5.3.0/papaparse.min.js"></script>
<!-- Load Mapbox -->
<script src='https://api.mapbox.com/mapbox.js/v3.3.1/mapbox.js'></script>
<!-- Load scripts -->
<script src='scripts/script.js' type=""></script>
<script src='scripts/input.js' type=""></script>
</body>
</html>