-
Notifications
You must be signed in to change notification settings - Fork 0
/
main2.js
81 lines (78 loc) · 3.82 KB
/
main2.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
var quiz=document.getElementById("quiz");
var ques=document.getElementById("question");
var opt1=document.getElementById("option1");
var opt2=document.getElementById("option2");
var opt3=document.getElementById("option3");
var opt4=document.getElementById("option4");
var r=document.getElementById("result");
var nextbutton= document.getElementById("next");
var q=document.getElementById('quit');
var r1=document.getElementById('res1');
var r2=document.getElementById('res2');
var tques=questions.length;
var ascore=0;
var bscore=0;
var cscore=0;
var dscore=0;
var quesindex=0;
function quit()
{
quiz.style.display='none';
result.style.display='';
r.style.display='';
res1.style.display='';
res2.style.display='';
r.textContent="Вы ответили не на все вопросы";
q.style.display="none";
}
function give_ques(quesindex)
{
ques.textContent=quesindex+1+". "+questions[quesindex][0];
opt1.textContent=questions[quesindex][1];
opt2.textContent=questions[quesindex][2];
opt3.textContent=questions[quesindex][3];
opt4.textContent=questions[quesindex][4];
return;// body...
};
give_ques(0);
function nextques()
{
var selected_ans= document.querySelector('input[type=radio]:checked');
if(!selected_ans)
{alert("Выберете один из вариантов ответа");return;}
if(selected_ans.value==1)
{ascore=ascore+1;}
if(selected_ans.value==2)
{bscore=bscore+1;}
if(selected_ans.value==3)
{cscore=cscore+1;}
if(selected_ans.value==4)
{dscore=dscore+1;}
selected_ans.checked=false;
quesindex++;
if(quesindex==tques-1)
nextbutton.textContent="Показать результат";
var arr=[ascore, bscore, cscore, dscore];
var m=Math.max(...arr);
var index=arr.indexOf(m);
var roles=["Вы абсолютно не похожи, по характеру, на Саку Фукудзаву! Это хорошие новости, ведь если бы у Вас было много общего, без ответственного существа рядом Вам вряд ли вообще выжить.",
"Вы очень похожи на Саку Фукудзаву... Это уже пугает. Если так пойдет дальше, Вам понадобится свой Кот-домохозяин или любое другое крайне ответственное и заботливое существо. Иначе Вам вряд ли выжить.",
"Вы не сильно похожи на Саку Фукудзаву! Это хорошие новости, ведь Вам не особенно свойственны ее отрицательные черты характера, но вместе с тем справляетесь с большинством дел, которые она бы провалила.",
"Вы не сильно похожи на Саку Фукудзаву! Это уже хорошие новости, но тем не менее схожесть есть. Необходимо поработать над коммуникациями с людьми и все равно поискать ответственное и заботливое существо. Иначе Вам вряд ли выжить."];
if(quesindex==tques)
{
q.style.display='none';
quiz.style.display='none';
result.style.display='';
r.style.display='';
if(index==0){r.style.backgroundImage="url('1.gif')"}
if(index==1){r.style.backgroundImage="url('2.gif')"}
if(index==2){r.style.backgroundImage="url('3.gif')"}
if(index==3){r.style.backgroundImage="url('4.gif')"}
res1.style.display='';
res2.style.display='';
result.textContent=roles[index];
return;
}
give_ques(quesindex);
}