-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathss_data_get3.html
52 lines (52 loc) · 1.82 KB
/
ss_data_get3.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
<!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">
<meta name="robots" content="noindex,nofollow">
<title>ScoreSaber Number of Rankers by Country(国別ランカー数)</title>
<style type="text/css">
body {
padding-top: 50px;
}
header {
width: 100%;
height: 50px;
background: #CCC;
padding: 20px 10px;
box-sizing: border-box;
position: fixed;
top: 0;
left: 0;
display: flex;
align-items: center;
}
#heightInput {
width: 4em;
}
#container {
width: 100%;
height: 800px;
}
</style>
</head>
<body>
<script src="https://code.highcharts.com/stock/highstock.js"></script>
<script src="https://code.highcharts.com/stock/modules/data.js"></script>
<script src="https://code.highcharts.com/stock/modules/exporting.js"></script>
<script src="https://code.highcharts.com/stock/modules/export-data.js"></script>
<script src="https://code.highcharts.com/modules/accessibility.js"></script>
<script type="text/javascript" src="./js/population.js"></script>
<script type="text/javascript" src="./js/countrychart.js"></script>
<header>
<div class="controls">
<button id="view_mode">Comparison per million population(人口百万人当たり)</button>
Graph Height(グラフ高さ)
<button id="autoheight">Adjust(再調整)</button>
<input type="number" id="heightInput" value="800"></input> px
<button id="heightApply">Change(変更)</button>
</div>
</header>
<div id="container"></div>
</body>
</html>