This repository has been archived by the owner on Apr 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
59 lines (55 loc) · 3.12 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="description" content="Injury infographics for all active NBA players." />
<meta name="keywords" content="NBA, Basketball, Injury, Injuries, Infographic, Visualization, Visualisation, Fantasy Basketball, Research" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Pokuan Ho" />
<!-- meta tags for open graph -->
<meta property="og:title" content="NBA Injuries Visualization" />
<meta property="og:image" content="https://p1ho.github.io/nba-injuries-visualization/image/thumbnail.png" />
<meta property="og:image:secure_url" content="https://p1ho.github.io/nba-injuries-visualization/image/thumbnail.png" />
<meta property="og:description" content="Injury infographics for all active NBA players." />
<meta property="og:url" content="https://p1ho.github.io/nba-injuries-visualization" />
<meta property="og:type" content="website" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-142162378-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-142162378-1');
</script>
<meta charset="utf-8">
<title>NBA Injuries Visualization</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<link rel="stylesheet" href="./css/app.css">
<link rel="icon" href="./image/nba.ico" type="image/x-icon">
</head>
<body>
<!-- Fork Snippet -->
<a href="https://github.com/p1ho/nba-injuries-visualization/"><img width="100" height="100" src="https://github.blog/wp-content/uploads/2008/12/forkme_right_green_007200.png?resize=300%2C300" alt="Fork me on GitHub" data-recalc-dims="1" style="position: absolute; top : 0; right: 0"></a>
<!-- Fork Snippet end -->
<h1>NBA Injuries Visualization</h1>
<main id="app" v-cloak></main>
<script src="./js/graph-helpers/reposition.js"></script>
<script src="./js/graph-helpers/create-traces.js"></script>
<script src="./js/injury-graph.vue.js"></script>
<script src="./js/player-list.vue.js"></script>
<script src="./js/team-list.vue.js"></script>
<script src="./js/app.vue.js"></script>
<footer>
Made by Pokuan Ho
| Powered by <a href="https://plot.ly/javascript/">Plotly.js</a>
| Data from <a href="https://www.foxsports.com/nba">Fox Sports</a> (<span id="updated"></span>)
<span id="footer-links">
<a href="https://www.linkedin.com/in/hopokuan/"><i class="fa fa-linkedin-square" title="linkedin"></i></a>
<a href="https://github.com/p1ho"><i class="fa fa-github-square" title="github"></i></a>
</span>
</footer>
</body>
</html>