-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
104 lines (95 loc) · 3.19 KB
/
script.js
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
$(window).on('load', function () {
setTimeout(function () {
$('.carousel').css({'display': 'none'});
$('.content').fadeIn().css({'display': 'flex'});
}, 700);
});
(function () {
var meals = {
"Spaghetti bolognese and a fresh orange juice.": [true, true, true],
"Polish pierogi with blueberries and a sweet cream nute.": [false, true, false],
"Fresh ribs in a barbecue sauce and a glass of a good beer.": [true, false, true],
"Spaghetti bolognese with a fresh rucola leaves.": [true, true, false],
"Pasta with a fresh sweet cottage cheese.": [false, true, true],
"Hmm, a scrambled eggs, maybe?": [false, false, false],
"Pizza ala capricciosa with a fresh Prosciutto di Parma slices.": [true, false, false],
"A fresh and slightly frozen strawberry shake.": [false, false, true]
};
$('#qButton1Y').click(function () {
if (this.id == 'qButton1Y') {
answers.push(true);
}
});
$('#qButton1N').click(function () {
if (this.id == 'qButton1N') {
answers.push(false);
}
});
$('#qButton2Y').click(function () {
if (this.id == 'qButton2Y') {
answers.push(true);
}
});
$('#qButton2N').click(function () {
if (this.id == 'qButton2N') {
answers.push(false);
}
});
$('#qButton3Y').click(function () {
if (this.id == 'qButton3Y') {
answers.push(true);
}
});
$('#qButton3N').click(function () {
if (this.id == 'qButton3N') {
answers.push(false);
}
});
var answers = [];
function check() {
Object.keys(meals).map(function (value, index) {
if (meals[value].every(function (v, i) {
return v == answers[i]
})) {
document.getElementById('result').innerHTML = value;
}
});
}
$('.startButton').click(function () {
$('.msgDiv').fadeOut(200);
$('.firstPic').fadeOut(200);
setTimeout(function () {
$('#firstQ').fadeIn(200);
$('.secondPic').fadeIn(200);
}, 200)
});
$('#qButton1Y, #qButton1N').click(function () {
$('#firstQ').fadeOut(200);
$('.secondPic').fadeOut(200);
setTimeout(function () {
$('#secondQ').fadeIn(200);
$('.thirdPic').fadeIn(200);
}, 200)
});
$('#qButton2Y, #qButton2N').click(function () {
$('#secondQ').fadeOut(200);
$('.thirdPic').fadeOut(200);
setTimeout(function () {
$('#thirdQ').fadeIn(200);
$('.fourthPic').fadeIn(200);
}, 200)
});
$('#qButton3Y, #qButton3N').click(function () {
check();
$('#thirdQ').fadeOut(200);
$('.fourthPic').fadeOut(200);
setTimeout(function () {
$('#finalScreen').fadeIn(200);
$('.fifthPic').fadeIn(200);
}, 200)
});
$('#tryAgainButton').click(function () {
$('.content').css({'display': 'none'});
location.reload();
});
})();