-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (75 loc) · 3.62 KB
/
Copy pathindex.html
File metadata and controls
81 lines (75 loc) · 3.62 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
<!DOCTYPE html>
<html data-bs-theme="dark">
<head>
<title>Career Transition Network</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://d3js.org/d3.v7.min.js"></script>
<link href="./static/css/styles.css" rel="stylesheet">
</head>
<body>
<!-- Updated title bar -->
<nav class="navbar navbar-expand-lg bg-primary">
<div class="container-fluid">
<span class="navbar-brand mb-0">Direct and Indirect Occupational Transitional Pathways for Clean Energy Workforce Development</span>
</div>
</nav>
<div class="container-fluid p-0">
<div class="row g-0">
<!-- Left sidebar with guide (25%) -->
<div class="col-3 vh-100">
<div class="guide-sidebar">
<div class="card bg-dark text-light h-100">
<div class="card-body">
<h2 class="h3 mb-4">How to Use</h2>
<h3 class="h5 mb-3">Understanding</h3>
<ul class="list-unstyled">
<li class="mb-2">🔵 <strong>Blue:</strong> Traditional Jobs</li>
<li class="mb-2">🟢 <strong>Green:</strong> Clean Energy Jobs</li>
<li class="mb-2">➡️ <strong>Arrows:</strong> Transitions</li>
<li class="mb-2">💰 <strong>Salary:</strong> On Hover</li>
</ul>
<h3 class="h5 mb-3">Interaction</h3>
<ul class="list-unstyled">
<li class="mb-2">1️⃣ <strong>Hover</strong> For Details</li>
<li class="mb-2">2️⃣ <strong>Purple:</strong> Multi-step Paths</li>
<li class="mb-2">3️⃣ <strong>Orange:</strong> Direct Paths</li>
</ul>
<h3 class="h5 mb-3">Tips</h3>
<ul class="list-unstyled">
<li class="mb-2">🎯 Compare Salaries</li>
<li class="mb-2">🔄 Check Step-by-Step Paths</li>
<li class="mb-2">📊 Explore Options</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Main visualization (50%) -->
<div class="col-6 vh-100">
<div id="visualization"></div>
</div>
<!-- Right sidebar (25%) -->
<div class="col-3 vh-100">
<div class="transition-sidebar">
<h2 class="h4 mb-3">Career Transitions</h2>
<div class="stats-box mb-3">
<h3 class="h5 mb-2">Selected Job</h3>
<div id="job-details">
<p class="small mb-0">Hover over a job to see details</p>
</div>
</div>
<div id="transition-paths">
<h3 class="h5 mb-2">Available Transitions</h3>
<div id="paths-list">
<p class="small mb-0">Hover over a traditional job to view transitions</p>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="./static/js/network.js" defer></script>
</body>
</html>