-
Notifications
You must be signed in to change notification settings - Fork 0
/
comparison.html
125 lines (106 loc) · 3.83 KB
/
comparison.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/Chart.bundle.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/Chart.min.css">
<meta charset="utf-8">
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="stylesheet" href="sammenligning.css" type="text/css">
<title>Assignment</title>
</head>
<body onload="load()">
<!-- ny meny
<ul id = "menu">
<li class ="top"><a class="top" href="introduction.html">Introduksjon</a></li>
<li class ="top"><a class="top" href="overview.html">Oversikt</a></li>
<li class ="top"><a class="top" href="details.html">Detaljer</a></li>
<li class ="top"><a class="active" class ="top" href="comparison.html">Sammenligning</a></li>
</ul><br/><br/>-->
<div class="nav">
<a href="introduction.html">Introduksjon</a>
<a href="overview.html">Oversikt</a>
<a href="details.html">Detaljer</a>
<a class = "active" href="comparison.html">Sammenligning</a>
</div>
<br>
<br>
<br>
<div class="header" id = "kommunesammenligning">
<h1 id="en">Kommunesammenligning!</h1>
<p id = "to">Her kan du sammenligne to kommuner, og sjekke hvilken av de som har best statistikk for utdanning!</p>
<p id = "tre">skriv inn et kommunenavn for å komme i gang.</p>
<input type="text" id = "input1" onfocus="this.value=''" value="Kommune:">
<input type="text" id = "input2" onfocus="this.value=''" value="Kommune:">
<br>
<br>
<button onclick="search()" id = "b1">Sammenlign!</button>
<div id="resultat"></div>
<div style="background: red">
<div style="background: darkred; width: 25%; text-align: center">25%</div>
<div style="background: darkred; width: 66%; text-align: center">66%</div>
<div style="background: darkred; width: 78%; text-align: center">78%</div>
</div>
</div>
<br>
<br>
<footer class= "footer">
<div> Dette er en oppgavebesvarelse i INFO134 vår2020. </div>
</footer>
</body>
<script>
async function load() {
const response = await fetch("datasett.json");
window.data = await response.json();
console.log("Dataene er lastet ned...");
}
function search() {
const input1 = document.querySelector("#input1").value;
const input2 = document.querySelector("#input2").value;
const kommune1 = window.data.elementer[input1];
const kommune2 = window.data.elementer[input2];
const oldCanvas = document.querySelector("canvas");
if(oldCanvas)
oldCanvas.remove();
console.log(kommune1,kommune2);
const resultater = document.querySelector("#resultat");
if (!kommune1 || !kommune2){
if (!kommune1)
resultater.textContent = input1 + " er ikke en gyldig kommune! ";
if (!kommune2)
resultater.textContent += input1 + " er ikke en gyldig kommune! ";
return;
}
const canvas = document.createElement("canvas");
new Chart(canvas.getContext('2d'), {
type: 'bar',
data: {
labels: ['Richard', 'Sunniva'],
datasets: [{
label: 'What?!',
data: [12, 19],
backgroundColor: [
'rgba(255, 99, 132, 0.6)',
'rgba(54, 162, 235, 0.6)'
],
borderColor: [
'rgba(255, 99, 132, 1)',
'rgba(54, 162, 235, 1)'
],
borderWidth: 1
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});
resultater.appendChild(canvas)
}
</script>
<script></script>
</html>