-
Notifications
You must be signed in to change notification settings - Fork 0
/
layer2.html
53 lines (50 loc) · 2.07 KB
/
layer2.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
<!--Layer 1
Links to style2.css and zoomLayer2.js
Follows the 5 box structure from layer1
Adds additional content into each box
Each smaller box is represented by a class, grouped together under larger box
e.g. selection falls under box1 (rightmost box)
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Space Architecture Mapping</title>
<link rel="stylesheet" href="style2.css">
<script src="zoomLayer2.js"></script>
<script src="https://cdn.jsdelivr.net/npm/arrow-line/dist/arrow-line.min.js"></script>
</head>
<body>
<div class="container">
<div class="box box1"> <!--Everything falls under box-->
<!--These smaller classes fall under box1-->
<div class="selection">Selection</div> <!--change text here-->
<div class="chronic_stressors">Chronic Stressors</div>
<div class="acute_stressors">Acute Stressors</div>
</div>
<div class="box box2">
<div class="individual_traits">Individual Traits</div>
<div class="environmental_stressors">Environmental Stressors</div>
<div class="designed_features">Designed Features</div>
</div>
<div class="box box6">
<div class="social_composition">Social Composition</div>
<div class="resources">Resources</div>
<div class="operational_stressors">Operational Stressors</div>
</div>
<div class="box box3">
<div class="team_processes">Team Processes</div>
<div class="individual_processes">Individual Processes</div>
</div>
<div class="box box4">
<div class="behavioral_health_and_performance_outcomes">Behavioral Health and Performance Outcomes</div>
</div>
<div class="box box5">
<div class="loss_of_mission">Loss of Mission</div>
<div class="loss_of_crew_life">Loss of Crew Life</div>
<div class="quality_of_life">Quality of Life</div>
</div>
</div>
</body>
</html>