-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (89 loc) · 4.35 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
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Bellybutton Biodiversity</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="static/css/style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12 jumbotron text-center hero">
<h1 id="dashboard_title">Belly Button Biodiversity Dashboard</h1>
<p id="dashboard_p">Use the interactive charts below to explore the dataset</p>
</div>
</div>
<div class="row">
<div class="col-md-2">
<div class="well">
<h5>Test Subject ID No.:</h5>
<select id="selDataset" name="selDataset" onchange="optionChanged(this.value)">
<!-- <option selected></option> -->
</select>
</div>
<div id="demo_info" class="panel" class="col-md-2">
<div class="panel-heading">
<h5 class="panel-title">Demographic Info</h3>
</div>
<div id="sample-metadata" class="panel-body"></div>
</div>
</div>
<div class="col-md-5">
<div id="bar">
</div>
</div>
<div class="col-md-5">
<div id="gauge">
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div id="bubble">
</div>
</div>
</div>
<!-- ========== Footer ========== -->
<footer class="footer" style="margin-top: 20px;">
<div class="row">
<div class="col-lg-12">
<ul class="list-unstyled">
<li class="float-lg-right">
<i class="fas fa-angle-double-up" style="color:#800080;"></i>
<a href="#top" class="">Back to top</a>
</li>
<li class="float-lg-left" style="margin-right: 20px;">
<i class="fas fa-disease" style="color:#800080;"></i>
<a href="https://github.com/Jamie-GiHu/plotly-challenge.git" target="_blank">Git Hub Interactive Dashboard & Data Visualisation Project</a>
</li>
<li class="float-lg-left" style="margin-right: 20px;">
<i class="fab fa-superpowers" style="color:#800080;"></i>
<a href="https://jamie-gihu.github.io/plotly-challenge/" target="_blank">Git Hub Pages for Interactive Dashboard</a>
</li>
</ul>
</div>
<div class="col-lg-12" style="margin-top:20px;">
<p>Created by
<a href="https://github.com/Jamie-GiHu">Jamie Tan </a>
for Data Analytics Bootcamp @ Monash University.</p>
</div>
</div>
</footer>
</div>
<!-- Bringing in Javascript to enable components in bootstrap -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js" integrity="sha384-LtrjvnR4Twt/qOuYxE721u19sVFLVSA4hf/rRt6PrZTmiPltdZcI7q7PXQBYTKyf" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/231099ded4.js" crossorigin="anonymous">SameSite=None; Secure</script>
<!-- Bring in D3, Plotly and custom app -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.5.0/d3.js"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script src="https://jamie-gihu.github.io/plotly-challenge/static/js/app.js" type="text/javascript"></script>
<script src="https://jamie-gihu.github.io/plotly-challenge/static/js/bonus.js" type="text/javascript"></script>
</body>
</html>