-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (106 loc) · 2.88 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
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap"
/>
<link rel="stylesheet" href="css/style.css" />
<title>D3: Tree Map (Movies)</title>
</head>
<body>
<h2 id="title">Highest Grossing Movies</h2>
<div id="container">
<svg id="canvas"></svg>
<div id="rightSide">
<div id="tooltip"></div>
<svg id="legend">
<g>
<rect
class="legend-item"
x="10"
y="0"
width="40"
height="40"
fill="orange"
></rect>
<text x="60" y="20" fill="white">Action</text>
</g>
<g>
<rect
class="legend-item"
x="10"
y="40"
width="40"
height="40"
fill="lightgreen"
></rect>
<text x="60" y="60" fill="white">Drama</text>
</g>
<g>
<rect
class="legend-item"
x="10"
y="80"
width="40"
height="40"
fill="coral"
></rect>
<text x="60" y="100" fill="white">Adventure</text>
</g>
<g>
<rect
class="legend-item"
x="10"
y="120"
width="40"
height="40"
fill="lightblue"
></rect>
<text x="60" y="140" fill="white">Family</text>
</g>
<g>
<rect
class="legend-item"
x="10"
y="160"
width="40"
height="40"
fill="pink"
></rect>
<text x="60" y="180" fill="white">Animation</text>
</g>
<g>
<rect
class="legend-item"
x="10"
y="200"
width="40"
height="40"
fill="khaki"
></rect>
<text x="60" y="220" fill="white">Comedy</text>
</g>
<g>
<rect
class="legend-item"
x="10"
y="240"
width="40"
height="40"
fill="tan"
></rect>
<text x="60" y="260" fill="white">Biography</text>
</g>
</svg>
<div id="description">Top 95 Highest Grossing Movies</div>
</div>
</div>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script type="text/babel" src="script/index.js"></script>
</body>
</html>