-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (83 loc) · 3.46 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Avalanche Characteristics</title>
<script src="https://d3js.org/d3.v5.js"></script>
<link rel="stylesheet" href="styles.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.8.0/css/bulma.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:500&display=swap" rel="stylesheet">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
</head>
<body>
<section class="section is-paddingless has-background-light" id="headersection">
<div class="container has-text-centered">
<span class="title has-text-info">
<img src="https://img.icons8.com/color/36/000000/mountain.png">
AvI - Avalanche Investigator
</span>
<div class="">
<p class="subtitle has-text-centered has-text-link">
Exploring Characteristics of Utah's Reported Avalanches Over Time
</p>
</div>
</div>
</section>
<div class="tile is-ancestor">
<div class="tile is-parent ">
<div class="tile is-child is-parent is-4 has-text-centered box " id="yearbox">
<p class="subtitle">Click and drag to select a time range.</p>
<svg id="yeargrid">
</svg>
<br>
<div id='yearmonthlegend'>
</div>
<br>
<input type="checkbox" id="summerCheckBox" name="summerCheckBox" checked>
<label for="summerCheckBox">Show months with no reported observations.</label>
</div>
<div class="tile is-medium is-child is-3 box" id="dropdown">
<div class = "dropdown-wrapper" id = "dropdown-wrapper">
</div>
<svg id="spidersvg">
</svg>
</div>
<div class="tile is-child is-5 has-text-centered box" id="story">
<img id="catIcon", style='float: right;'>
<p class="subtitle", id= "attrTitle"></p>
<ul id="attrDescription" class="storyText"></ul>
<br>
<p class="storyHeader">Points of Interest:</p>
<br>
<a class="button is-small"></a>
<a class="button is-small"></a>
<a class="button is-small"></a>
<br>
<br>
<p class="storyText" id="context"></p>
<div class="buttons is-centered">
<form action="https://utahavalanchecenter.org/observations" method="get" target="_blank" id = "uaclink">
<button type="submit" class="button is-primary is-light is-outlined is-small" >Link to UAC Reports</button>
</form>
<form action="https://vimeo.com/376592967" method="get" target="_blank" id = "uaclink">
<button type="submit" class="button is-link is-light is-outlined is-small" >Demo Video</button>
</form>
</div>
</div>
</div>
</div>
<div class="tile is-ancestor">
<div class="tile is-parent is-paddingless">
<div class="tile is-child has-text-centered box" id="areachart">
</div>
</div>
</div>
<a href="https://icons8.com/icon/110283/mountain">Icon by Icons8</a>
</body>
<script src="js/AreaChart.js" async></script>
<script src="js/yeargrid.js" aync></script>
<script src="js/spiderchart.js" aync></script>
<script src="js/story.js" async></script>
<script src="js/script.js" async></script>
</html>