-
Notifications
You must be signed in to change notification settings - Fork 0
/
stage-4-quiz.js
124 lines (93 loc) · 2.52 KB
/
stage-4-quiz.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
function quiz() {
if (!backgroundImg3) {
background(backgroundImg1);
} else {
background(backgroundImg3);
}
// relogio
image(relogio, 1015, 160, 100, 100);
fill(250);
circle(1070, 215, 50);
fill(30);
textSize(30);
textStyle(BOLD);
text(`${segundos}`, 980, 170, 100, 100); // segundos
image(perfil, 175, 160, 100, 100);
noFill();
stroke(0); // cor
strokeWeight(2); // borda
rect(175, 160, 100, 100);
// caixa pergunta
fill(220);
stroke(0); // cor
strokeWeight(2); // borda
rect(305, 100, 690, 200, 10);
// texto pergunta 1300, 750
fill(70); // cor
textSize(24); // tamanho da fonte
textAlign(CENTER, CENTER);
textStyle(NORMAL);
text(`${pergunta[indice]}`, 305, 100, 690, 200);
//
//alternativa VERMELHA
fill(255, 0, 0);
stroke(0); // cor
strokeWeight(2); // borda
rect(10, 380, 635, 150, 10);
fill(255); // cor
textSize(24); // tamanho da fonte
textAlign(CENTER, CENTER);
textStyle(NORMAL);
text(`${alternativa[indice][0]}`, 10, 380, 635, 150);
//alternativa AZUL
fill(0, 0, 255);
stroke(0); // cor
strokeWeight(2); // borda
rect(655, 380, 635, 150, 10);
fill(255); // cor
textSize(24); // tamanho da fonte
textAlign(CENTER, CENTER);
textStyle(NORMAL);
text(`${alternativa[indice][1]}`, 655, 380, 635, 150);
//alternativa AMARELA
fill(255, 255, 0);
stroke(0); // cor
strokeWeight(2); // borda
rect(10, 540, 635, 150, 10);
fill(255); // cor
textSize(24); // tamanho da fonte
textAlign(CENTER, CENTER);
textStyle(NORMAL);
text(`${alternativa[indice][2]}`, 10, 540, 635, 150);
//alternativa VERDE
fill(0, 255, 0);
stroke(0); // cor
strokeWeight(2); // borda
rect(655, 540, 635, 150, 10);
fill(255); // cor
textSize(24); // tamanho da fonte
textAlign(CENTER, CENTER);
textStyle(NORMAL);
text(`${alternativa[indice][3]}`, 655, 540, 635, 150);
//
//footer
fill(220);
noStroke();
rect(0, height - 50, width, 50);
// nickname
fill(30); // cor
textSize(24); // tamanho da fonte
textAlign(LEFT);
textStyle(BOLD);
text(`${nickname}`, 10, 727);
// pontos
fill(50);
noStroke(); // cor da borda
rect(1190, 710, 100, 30, 5);
// pontos
fill(255); // cor
textSize(24); // tamanho da fonte
textAlign(RIGHT);
textStyle(NORMAL);
text(`${pontos}`, 1273, 727);
}