-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (53 loc) · 2.06 KB
/
Copy pathindex.html
File metadata and controls
54 lines (53 loc) · 2.06 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Animals-data by guyb7</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/github-light.css">
<meta name="viewport" content="width=device-width">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header>
<h1>Animals life-span vs size</h1>
<p class="view"><a href="https://github.com/guyb7/animals-data">View the Project on GitHub <small>guyb7/animals-data</small></a></p>
</header>
<h3>Filters</h3>
<div>
Species
<select id="filter_species" multiple="multiple">
</select>
</div>
<button id="update_data">Update</button>
<section>
<div id="app">
<div id="animalInfo">
<div>Name: <span id="animalName"> </span></div>
<div>Life span (years): <span id="animalX"> </span></div>
<div>Weight (kg): <span id="animalY"> </span></div>
</div>
</div>
<h3>Data source</h3>
<p>
All data was taken from <a href="http://genomics.senescence.info/species/" target="_blank">AnAge</a>, a curated database of ageing and life history in animals.
</p>
<h3>Visualization</h3>
<p>
Made with <a href="https://d3js.org/" target="_blank">D3.js</a> - a JavaScript library for manipulating documents based on data.
</p>
<h3>Credits</h3>
<p>This project is maintained by <a href="https://github.com/guyb7">guyb7</a></p>
<p>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></p>
</section>
</div>
<script src="javascripts/scale.fix.js"></script>
<script src="javascripts/d3.v3.min.js"></script>
<script src="javascripts/underscore-min.js"></script>
<script src="javascripts/app.js"></script>
</body>
</html>