-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (102 loc) · 3.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap"
rel="stylesheet"
/>
</head>
<body>
<link rel="stylesheet" href="stylezSIDE.css" />
<script src="https://d3js.org/d3.v4.js"></script>
<script src="https://unpkg.com/intersection-observer"></script>
<script src="https://unpkg.com/scrollama"></script>
<!-- <script src="steps.js" type="module"></script> -->
<script src="data/dataPrep.js" type="module"></script>
<script src="graphFunctions.js" type="module"></script>
<script src="scrollFunctions.js" type="module"></script>
<section id="scrolly">
<article id="scrollSteps">
<div id="footer"></div>
<div class="step" id="intro">
<p>Intro</p>
</div>
<div class="step year" id="year2006">
<p>2006</p>
</div>
<div class="step year" id="year2007">
<p>2007</p>
</div>
<div class="step year" id="year2008">
<p>2008</p>
</div>
<div class="step year" id="year2009">
<p>2009</p>
</div>
<div class="step year" id="year2010">
<p>2010</p>
</div>
<div class="step year" id="year2011">
<p>2011</p>
</div>
<div class="step year" id="year2012">
<p>2012</p>
</div>
<div class="step year" id="year2013">
<p>2013</p>
</div>
<div class="step year" id="year2014">
<p>2014</p>
</div>
<div class="step year" id="year2015">
<p>2015</p>
</div>
<div class="step year" id="year2016">
<p>2016</p>
</div>
<div class="step year" id="year2017">
<p>2017</p>
</div>
<div class="step year" id="year2018">
<p>2018</p>
</div>
<div class="step year" id="year2019">
<p>2019</p>
</div>
<div class="step year" id="year2020">
<p>2020</p>
</div>
<div class="step" id="classBreakdown">
<p>Class Breakdown</p>
</div>
<div class="step" id="firstAndLast">
<p>First and Last</p>
</div>
<div class="step" id="productLevel">
<p>Product Level</p>
</div>
<!-- <div class="step" id="temp">
<p>Step</p>
</div>
<div class="step" id="temp">
<p>Step</p>
</div> -->
</article>
<div id="textStory">
<p id="renderedText"></p>
</div>
<!-- <div id="allGraphs" class="sticky"> -->
<div id="primaryViz" class="sticky">
<div id="graphTitle"><span>Total Mail Volume</span></div>
<div id="tooltip" class="hidden">this is the tooltip</div>
</div>
<!-- <div id="secondaryViz"></div> -->
<!-- </div> -->
</section>
</body>
</html>