-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (89 loc) · 3.12 KB
/
index.html
File metadata and controls
94 lines (89 loc) · 3.12 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
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
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Pelaaja</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.6.0/Chart.bundle.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script src="PelaajaJS_Jquery.js"></script>
<link href="PelaajaTyyli.css" type="text/css" rel="stylesheet">
</head>
<body>
<div id="PelaajaTiedot" class= "center">
<div class ="Player">
<b id="Joukkue"></b>
<br>
<b id="Nimi" class="Nimi">Hae pelaajaa</b>
<b id="Numero" class="Nimi"></b>
</br>
</div>
<div>
<select id = "Years">
<option>2018</option>
<option>2017</option>
<option>2016</option>
<option>2015</option>
<option>2014</option>
<option>2013</option>
</select>
</div>
</div>
<div class ="tulokset">
<table clas ="table">
<tr>
<td>Erät </td>
<td>Heitot</td>
<td>Pisteet</td>
<td>Kes. heitto</td>
<td>1.</td>
<td>2.</td>
<td>3.</td>
<td>4.</td>
<td>Paras heitto</td>
<td>Hauki %</td>
<td>Nolla %</td>
<td>Nollaputki</td>
<td>Joulukuuset</td>
<td>Paras erä</td>
<td>Huonoin erä</td>
</tr>
<tr>
<td id= "era_maara"></td>
<td id= "heitot_maara"></td>
<td id= "pisteet_maara"></td>
<td id= "pisteetper_maara"></td>
<td id= "pisteetper_eka"></td>
<td id= "pisteetper_tok"></td>
<td id= "pisteetper_kol"></td>
<td id= "pisteetper_nel"></td>
<td id= "paras_heitto"></td>
<td id= "hauki_prosentti"></td>
<td id= "nolla_prosentti"></td>
<td id= "nolla_putki"></td>
<td id= "Joulukuuset"></td>
<td id= "max_era"></td>
<td id= "min_era"></td>
</tr>
</table>
</div>
<div>
<canvas id="pisteet" height="100"></canvas>
</div>
<div id="js-legend" class="chart-legend"></div>
<div id="piiraat" class="pisteet">
<div class ="inline_pie_first" id ="first_pie">
<canvas id="heitotyli" height="150"></canvas>
<div class = "center" id = "maara_1"></div>
</div>
<div class = "inline_pie_second" id ="second_pie">
<canvas id="heitotali" height="150"></canvas>
<div class = "center" id = "maara_2"></div>
</div>
<div class = "inline_pie_second" id ="tree_pie">
<canvas id="aloitusheitot" height="150"></canvas>
<div class = "center" id = "maara_3"></div>
</div>
</div>
</body>
</html>