-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (65 loc) · 3.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="./node_modules/babel-polyfill/dist/polyfill.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.5.0/d3.js"></script>
<script src="https://unpkg.com/topojson@3"></script>
<script src="https://simeydotme.github.io/jQuery-ui-Slider-Pips/dist/js/jquery-plus-ui.min.js"></script>
<script src="https://simeydotme.github.io/jQuery-ui-Slider-Pips/dist/js/jquery-ui-slider-pips.js"></script>
<link rel="stylesheet" href="https://simeydotme.github.io/jQuery-ui-Slider-Pips/dist/css/jqueryui.min.css">
<link rel="stylesheet" href="https://simeydotme.github.io/jQuery-ui-Slider-Pips/dist/css/jquery-ui-slider-pips.min.css">
<link rel="stylesheet" href="https://simeydotme.github.io/jQuery-ui-Slider-Pips/dist/css/app.min.css">
<link rel="apple-touch-icon" sizes="57x57" href="favicons/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="favicons/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="favicons/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="favicons/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="favicons/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="favicons/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="favicons/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="favicons/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="favicons/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="favicons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
<link rel="manifest" href="favicons/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="favicons/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<title>Movie data visualization</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="header">
<nav>
<h1 class="title">
Movie data visualization
</h1>
<div id="scale-slider"></div>
</nav>
</div>
<div class="flex-container">
<div class="plot">
<svg id="scatterPlot" version="1.1" baseProfile="full" xmlns="https://www.w3.org/2000/svg"></svg>
</div>
<div class="plot" id="movieInfo">
<h4 style="position:relative; top:40%; text-align: center;">Click a circle on the scatter plot
to
see detailed description of the movie here</h4>
</div>
<div class="plot">
<svg id="worldMap" version="1.1" baseProfile="full" xmlns="https://www.w3.org/2000/svg"></svg>
</div>
<div class="plot">
<svg id="barChart" version="1.1" xmlns="https://www.w3.org/2000/svg">
</svg>
</div>
</div>
<div id="footer">Data source:
<a href="https://www.themoviedb.org/">themoviedb.org</a>
</div>
<div class="tooltip"></div>
<script type="module" src="src/app.mjs"></script>
</body>
</html>