-
Notifications
You must be signed in to change notification settings - Fork 0
/
sections.js
195 lines (137 loc) · 4.31 KB
/
sections.js
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
// <!-- Code adapted from: -->
// <!-- http://bl.ocks.org/larskotthoff/4aeb6299c61a42093562 -->
// <!-- https://bl.ocks.org/sebg/0cc55428f83eb52bdfad6f5692023b07 -->
// <!-- https://stackoverflow.com/questions/64601357/d3-animating-multiple-lines-the-line-cant-be-completed -->
// <!-- https://www.d3-graph-gallery.com/graph/connectedscatter_select.html -->
let dataset, svg
let salarySizeScale, salaryXScale, categoryColorScale
let simulation, nodes
let categoryLegend, salaryLegend
drawInitial()
function drawInitial(){
let svg = d3.select("#vis")
.append('svg')
.attr('width', 1000)
.attr('height', 950)
.attr('opacity', 1);
svg.append('g').append('image').attr('class', 'nehruModi')
.attr('xlink:href', 'https://raw.githubusercontent.com/geetkalra/weblab/master/manmohanji.png')
.attr('width', 1000)
.attr('height', 950)
.transition().duration(000)
.attr('opacity', 1)
}
// drawInitial_2()
// function drawInitial_2(){
// let svg = d3.select("#vis2")
// .append('svg')
// .attr('width', 1000)
// .attr('height', 950)
// .attr('opacity', 0);
// svg.append('g').append('image').attr('class', 'nehruModi')
// .attr('xlink:href', 'https://raw.githubusercontent.com/geetkalra/weblab/master/nehruModi.png')
// .attr('width', 1000)
// .attr('height', 950)
// .transition().duration(000)
// .attr('opacity', 0)
// }
function draw1(){
let svg = d3.select("#vis").select("svg")
svg.selectAll("*").remove()
svg.attr('opacity', 0)
svg.transition().duration(2000).attr('opacity', 1)
manmohanji()
}
function draw2(){
// delete(year)
let svg = d3.select("#vis").select("svg")
svg.selectAll("*").remove()
svg.attr('opacity', 0)
svg.transition().duration(2000).attr('opacity', 1)
barRace()
}
function draw3(){
let svg = d3.select("#vis").select("svg")
svg.selectAll("*").remove()
svg.attr('opacity', 0)
svg.transition().duration(2000).attr('opacity', 1)
GDP()
}
function draw4(){
let svg = d3.select("#vis").select("svg")
svg.selectAll("*").remove()
svg.attr('opacity', 0)
svg.transition().duration(2000).attr('opacity', 1)
GDPPERCAPITA()
}
function draw5(){
let svg = d3.select("#vis").select("svg")
svg.selectAll("*").remove()
svg.attr('opacity', 0)
svg.transition().duration(2000).attr('opacity', 1)
// let S_W = window.innerWidth;
// let S_H = window.innerHeight;
// gdpScience2()
gdpScience()
}
function draw6(){
let svg = d3.select("#vis").select("svg")
svg.selectAll("*").remove()
svg.attr('opacity', 0)
svg.transition().duration(2000).attr('opacity', 1)
mapplot()
}
function draw7(){
let svg = d3.select("#vis").select("svg")
svg.selectAll("*").remove()
svg.attr('opacity', 0)
svg.transition().duration(2000).attr('opacity', 1)
littleGirl()
}
function draw8(){
let svg = d3.select("#vis").select("svg")
svg.selectAll("*").remove()
svg.attr('opacity', 0)
svg.transition().duration(2000).attr('opacity', 1)
mapplot()
}
function draw9(){
let svg = d3.select("#vis").select("svg")
// svg.selectAll("*").remove()
// svg.attr('opacity', 0)
svg.transition().duration(5000).attr('opacity', 0.5)
// littleGirl()
}
let activationFunctions = [
draw1,
draw2,
draw4,
draw5,
draw6,
draw7,
draw9,
draw9,
draw9
]
//All the scrolling function
//Will draw a new graph based on the index provided by the scroll
let scroll = scroller()
.container(d3.select('#graphic'))
scroll()
let lastIndex, activeIndex = 0
scroll.on('active', function(index){
d3.selectAll('.step')
.transition().duration(500)
.style('opacity', function (d, i) {return i === index ? 1 : 0.1;});
activeIndex = index
let sign = (activeIndex - lastIndex) < 0 ? -1 : 1;
let scrolledSections = d3.range(lastIndex + sign, activeIndex + sign, sign);
scrolledSections.forEach(i => {
activationFunctions[i]();
})
lastIndex = activeIndex;
})
scroll.on('progress', function(index, progress){
if (index == 2 & progress > 0.7){
}
})