forked from 9Axes/9axes.github.io
-
Notifications
You must be signed in to change notification settings - Fork 5
/
quiz.html
125 lines (113 loc) · 4.33 KB
/
quiz.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
<head>
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:400,700" rel="stylesheet">
<link href='style.css' rel='stylesheet' type='text/css'>
<title>Quiz - 9Axes</title>
<link rel="icon" type="x-icon" href="icon.png">
<link rel="shortcut icon" type="x-icon" href="icon.png">
<meta charset="utf-8">
</head>
<body>
<script type="application/javascript"
src="questions.js">
</script>
<h1>9Axes</h1>
<hr>
<h2 style="text-align:center;" id="question-number">A carregar...</h2>
<p class="question" id="question-text"></p>
<button class="button" onclick="next_question( 2)" style="background-color: #1b5e20;">Concordo Fortemente</button> <br>
<button class="button" onclick="next_question( 1)" style="background-color: #4caf50;">Concordo</button> <br>
<button class="button" onclick="next_question( 0)" style="background-color: #bbbbbb;">Neutro/Incerto</button> <br>
<button class="button" onclick="next_question(-1)" style="background-color: #f44336;">Discordo</button> <br>
<button class="button" onclick="next_question(-2)" style="background-color: #b71c1c;">Discordo Fortemente</button> <br>
<button class="small_button" onclick="prev_question()" id="back_button">Voltar</button>
<button class="small_button_off" id="back_button_off">Voltar</button><br>
<script>
var scores = [0, 0, 0, 0, 0, 0, 0, 0, 0];//fed, dem, glo, mil, fre, equ, sec, pro, mul - User's scores
var qn = 0; // Question number
var answers = [];
var quests = [];
init_all_questions(quests);
init_question(quests);
function init_all_questions(qs) {
//1,2,3,-2,-4
var t = [1,2,3,5,7];
for(var i = 0; i < 9; i++) //Number of Axes
{
var c = Math.random()<0.5;
for(var j = 0; j < 5; j++) //Number of questions per axis
{
var m = [i,c?t[j]:(8-t[j]),Math.floor(Math.random()*questions[i][c?t[j]:(8-t[j])].length)];
qs.push(m);
}
}
shuffle(qs);
}
function init_question() {
var ax = quests[qn][0];
var rate = quests[qn][1];
var num = quests[qn][2];
document.getElementById("question-text").innerHTML = questions[ax][rate][num];
document.getElementById("question-number").innerHTML = "Questão " + (qn + 1) + " de " + (quests.length);
if (qn == 0) {
document.getElementById("back_button").style.display = 'none';
document.getElementById("back_button_off").style.display = 'block';
} else {
document.getElementById("back_button").style.display = 'block';
document.getElementById("back_button_off").style.display = 'none';
}
}
function shuffle(array) {
var currentIndex = array.length, temporaryValue, randomIndex;
// While there remain elements to shuffle...
while (0 !== currentIndex) {
// Pick a remaining element...
randomIndex = Math.floor(Math.random() * currentIndex);
currentIndex -= 1;
// And swap it with the current element.
temporaryValue = array[currentIndex];
array[currentIndex] = array[randomIndex];
array[randomIndex] = temporaryValue;
}
return array;
}
function next_question(mult) {
var ax = quests[qn][0];
var rate = quests[qn][1];
var num = quests[qn][2];
scores[ax] += mult*(rate<4?1:-1);
answers[qn] = mult;
qn++;
if (qn < quests.length) {
init_question();
} else {
results();
}
}
function prev_question() {
if (qn == 0) {
return;
}
qn--;
var ax = quests[qn][0];
var rate = quests[qn][1];
var num = quests[qn][2];
scores[ax] -= answers[qn]*(rate<4?1:-1);
init_question();
}
function calc_score(score) {
return (50+5*score);
}
function results() {
location.href = `results.html`
+ `?a=${calc_score(scores[0])}`
+ `&b=${calc_score(scores[1])}`
+ `&c=${calc_score(scores[2])}`
+ `&d=${calc_score(scores[3])}`
+ `&e=${calc_score(scores[4])}`
+ `&f=${calc_score(scores[5])}`
+ `&g=${calc_score(scores[6])}`
+ `&h=${calc_score(scores[7])}`
+ `&i=${calc_score(scores[8])}`;
}
</script>
</body>