-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofessions.html
51 lines (51 loc) · 1.57 KB
/
professions.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Visualisation 1</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" />
</head>
<body id="viz1">
<script src="https://d3js.org/d3.v7.min.js"></script>
<h2 id="viz1-heading-outside">
Professional Background: Your Vocation
</h2>
<div class="viz-descr">
<span>
This visualization guides you through the relationship between views and professional background. Through the use of AI, we have intelligently classified over 1200+ occupations into 20 categories.
Learn more about each category by hovering over the bars for the top 10 most viewed speaker professions.
</span>
</div>
<div id="viz-container">
<script src="https://d3js.org/d3.v7.min.js"></script>
<div id="viz1-svg">
</div>
<div id="viz2-svg">
</div>
</div>
<script src="professions.js"></script>
<script>
// navigate left and right
document.addEventListener('keydown', function(event) {
if (event.key === 'ArrowRight') {
window.location.href = 'viz1-recap.html';
}
});
document.addEventListener('keyup', function(event) {
if (event.key === 'ArrowLeft') {
window.location.href = 'index.html';
}
});
</script>
<div class="arrow-container">
<a href="index.html" class="arrow-link" style="left: 10px;">
←
</a>
<a href="viz1-recap.html" class="arrow-link" style="right: 10px;">
→
</a>
</div>
</body>
</html>