-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.66 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Why is Kim K. Famous?</title>
<meta name="description" content="Holleywood person-graph">
<meta name="author" content="Andrew Nelson">
<link rel="stylesheet" href="css/styles.css">
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js_dep/tip.js"></script>
<link rel="stylesheet" href="css/tip-style.css">
</head>
<body>
<script src="js/kim-k-dataset.js"></script>
<script src="js/brandy-dataset.js"></script>
<script src="js/bacon-dataset.js"></script>
<script src="js/constitution-dataset.js"></script>
<script src="js/scripts.js"></script>
<script src="js/input.js"></script>
<p>Mouse over the bars and circles to get information about the people and events they represent. Use the dropdown below to switch between multiple datasets. There is a known bug where some of the events get messed up during transition between datasets. :(. </p>
Select a dataset:
<select id="dataset-select">
<option value="kim">Kim Kardashian</option>
<option value="bacon">Movies and Actors</option>
<option value="brandy">Brandy Norwood</option>
<option value="constitution">History of the Constitution</option>
</select>
<p>Data for movies and actors dataset from: <img src="https://www.themoviedb.org/assets/9b3f9c24d9fd5f297ae433eb33d93514/images/v4/logos/408x161-powered-by-rectangle-green.png" />
</body>
</html>