-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (54 loc) · 2.25 KB
/
index.html
File metadata and controls
60 lines (54 loc) · 2.25 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
<!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>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body style="background-color:cornsilk;">
<div class="container">
<div class="row">
<div class="col-md-12 jumbotron text-center" style="background-image: url(bb.jpg); font-family: Georgia, 'Times New Roman', Times, serif">
<h1>Belly Button Biodiversity Dashboard</h1>
<p>Use the interactive charts below to explore the dataset</p>
</div>
</div>
<div class="row">
<div class="col-md-2">
<div id= "idSel" class="well" style="background-color: #4e2c2c; color: rgb(229, 229, 240)">
<h5>Test Subject ID No.:</h5>
<!-- <select id="selDataset"></select> -->
<select id="selDataset" onchange="optionChanged(this.value)" style="background-color: #000000"></select>
</div>
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Demographic Info</h3>
</div>
<div id="sample-metadata" class="panel-body" style="background-color: #4e2c2c; color: rgb(229, 229, 240)"></div>
</div>
</div>
<div class="col-md-5">
<p><strong>Select your Test Subject ID and check the charts...</strong></p>
<p><strong>Wash Frequency:</strong> How often the subject washes their belly button per week</p>
<p><strong>Top 10:</strong> The 10 Bacteria found in the highest quantity.</p>
<p><strong>Culture Graph:</strong> A graph of all the bacteria found in the sample.</p>
<div id="gauge"></div>
</div>
<div class="col-md-5">
<div id="bar"></div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div id="bubble"></div>
</div>
</div>
</div>
<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="charts.js"></script>
</body>
</html>