-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (75 loc) · 2.97 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>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/ >
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Women's Hockey Player Archetypes</title>
<!-- Google fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:400,300"
rel="stylesheet"
type="text/css"
/>
<!-- D3.js -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"
charset="utf-8"
></script>
<!-- Bootstrap (for modal) -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl"
crossorigin="anonymous"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.0/font/bootstrap-icons.css"
/>
<!-- lodash -->
<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js"></script>
<!-- Select2 -->
<link
href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>
<!-- css -->
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div class="header">
<h1>Women's Hockey Player Archetypes</h1>
</div>
<div class="main">
<div class="radar-chart-wrapper">
<div class="radar-chart"></div>
</div>
<div class="player-sidebar">
<!-- <div class="button-wrapper">
<button id="filter"></button>
</div> -->
<div id="player-one-info" class="player-info"></div>
<div id="player-two-info" class="player-info"></div>
<div id="player-three-info" class="player-info"></div>
</div>
</div>
<hr />
<script type="module" src="index.js"></script>
<script type="module">
import { index } from "./index.js";
index();
</script>
<div id="filterModal"></div>
</body>
<footer>
Data analysis done by Carleen Markey and Nayan Patel. Original data,
full results, and paper are available on
<a href="https://github.com/cmarkey/Player-Clustering">Github</a>.
<br />
Website built by An Nguyen using D3.js. Source code is available on
<a href="https://github.com/nguyenank/player-archetypes">Github</a>.
</footer>
</html>