-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.45 KB
/
index.html
File metadata and controls
38 lines (34 loc) · 1.45 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
<!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">
<title>API to diagram</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2>What are the biggest base stats of the gen 1 starter Pokémon?</h2>
<div id="filters">
<strong>Filter:</strong>
<label><input type="radio" name="filters" value="1" id="filter-1-only" class="filters" />First evolution</label>
<label><input type="radio" name="filters" value="1" id="filter-2-only" class="filters" />Second
evolution</label>
<label><input type="radio" name="filters" value="1" id="filter-3-only" class="filters" />Third evolution</label>
<label><input type="radio" name="filters" value="1" id="filter-all" class="filters" />All evolutions</label>
</div>
<div class="hidden" id="toolTip">
<p id="type"></p>
<p id="value"></p>
</div>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
class="starterStats" width="100%" height="250" aria-labelledby="title" role="img">
</svg>
<div class="stackedBar">
</div>
<script src="https://d3js.org/d3.v7.js" charset="utf-8"></script>
<script src="./d3_chart.js"></script>
<script src="./d3stacked.js"></script>
<script src="./index.js"></script>
</body>
</html>