-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmartin.html
115 lines (80 loc) · 2.96 KB
/
martin.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
<html>
<head>
<title>Martin's App</title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<style>
body {
background: url("https://cdn.pixabay.com/photo/2016/09/09/18/56/cartoon-1657835_960_720.jpg");
color: white;
font-size: 2em;
}
select, button {
font-size: 1.5em;
color: yellow;
background: red;
border: none;
margin: 1em;
}
</style>
</head>
<body>
<img id="reward" src="https://j.gifs.com/W6Pp6n.gif" style="width: 100%; height: 100%; z-index: 9999; position: fixed;">
<div style="background: rgba(0,0,0,0.5); padding: 2em">
<h1>Martin's app</h1>
<h3>Kan du svaren på frågorna?</h3>
<div id="question-container"></div>
</div>
<script>
var questions = [
{
titel: "Vad heter spaniens huvudstad?",
alternativ: ["Ankeborg", "Madrid", "Panama", "Stockholm"],
svar: "Madrid"
}, {
titel: "Hur stort är universum?",
alternativ: ["Ingen vet", "1 miljon fotbollsplaner", "Lite större än växjö", "Ungefär 100000 Jordar"],
svar: "Ingen vet"
}, {
titel: "Hur många RPM har en tvättmaskinh?",
alternativ: ["1", "1200", "90", "Ungefär 100000"],
svar: "1200"
}
];
var currentQuestion = 1;
function svara () {
var svaret = $("#svaret").val();
var rattSvar = questions[currentQuestion-1].svar;
if (svaret == rattSvar) {
$("#reward").show();
alert ("Du svarade rätt! - bra jobbat!")
setTimeout(function() {
$("#reward").hide();
}, 2000)
}
else alert ("Ajaj, du svarade fel! - bättre lycka nästa gång!")
currentQuestion ++;
showQuestion();
}
function showQuestion () {
var elem = "<p>Fråga " + currentQuestion + ": " + questions[currentQuestion-1].titel + '</p><select id="svaret">';
for (var c = 0; c<4; c++) {
elem = elem + "<option>" + questions[currentQuestion-1].alternativ[c] + "</option>";
}
$('#question-container').html(elem + '</select><button onclick="svara()">Svara</button>');
}
showQuestion();
$("#reward").hide();
// Loopar igenom alla frågor
/*
for (var i=0; i < questions.length; i = i + 1) {
$('#question-container').append("<p>Fråga: " + questions[i].titel + "</p>");
var element = "<select>";
for (var c = 0; c<4; c++) {
element = element + "<option>" + questions[i].alternativ[c] + "</option>";
}
$('#question-container').append(element + "</select>")
}
*/
</script>
</body>
</html>