-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMotor test.html
208 lines (180 loc) · 8.19 KB
/
Motor test.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test Verdadero/Falso</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
h1 {
text-align: center;
}
.question {
margin-bottom: 20px;
}
.result {
margin-top: 20px;
font-size: 1.2em;
font-weight: bold;
text-align: center;
}
.feedback {
margin-top: 20px;
font-size: 1em;
}
.correct {
color: green;
}
.incorrect {
color: red;
}
.unanswered {
color: orange;
}
button {
display: block;
margin: 20px auto;
}
input[type="file"], input[type="number"] {
display: block;
margin: 10px auto;
padding: 5px;
font-size: 1em;
}
</style>
</head>
<body>
<h1>Test Verdadero/Falso</h1>
<!-- Input para cargar el archivo JSON -->
<label for="file-input">Selecciona el archivo JSON:</label>
<input type="file" id="file-input" accept=".json">
<!-- Input para definir cuántas preguntas hacer -->
<label for="num-questions">¿Cuántas preguntas quieres responder al azar?</label>
<input type="number" id="num-questions" min="1" placeholder="20">
<!-- Botón para cargar el quiz -->
<button id="load-btn">Cargar Quiz</button>
<!-- Contenedor donde se mostrará el quiz -->
<div id="quiz-container">
<!-- Las preguntas se insertarán aquí dinámicamente -->
</div>
<!-- Botones para enviar respuestas y reiniciar -->
<button id="submit-btn" style="display:none;">Enviar respuestas</button>
<button id="retry-btn" style="display:none;">Intentar de nuevo</button>
<!-- Resultados y retroalimentación -->
<div id="result" class="result"></div>
<div id="feedback" class="feedback"></div>
<script>
let preguntasSeleccionadas = [];
function shuffle(array) {
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[array[i], array[j]] = [array[j], array[i]];
}
return array;
}
function generarQuiz(preguntas, numPreguntas) {
const quizContainer = document.getElementById('quiz-container');
quizContainer.innerHTML = '';
preguntasSeleccionadas = shuffle([...preguntas]).slice(0, numPreguntas);
preguntasSeleccionadas.forEach((pregunta, index) => {
const questionDiv = document.createElement('div');
questionDiv.classList.add('question');
const label = document.createElement('label');
label.textContent = `${index + 1}. ${pregunta.texto}`;
const trueInput = document.createElement('input');
trueInput.type = 'radio';
trueInput.name = `pregunta${index}`;
trueInput.value = 'true';
const falseInput = document.createElement('input');
falseInput.type = 'radio';
falseInput.name = `pregunta${index}`;
falseInput.value = 'false';
const trueLabel = document.createElement('label');
trueLabel.textContent = ' Verdadero';
const falseLabel = document.createElement('label');
falseLabel.textContent = ' Falso';
questionDiv.appendChild(label);
questionDiv.appendChild(document.createElement('br'));
questionDiv.appendChild(trueInput);
questionDiv.appendChild(trueLabel);
questionDiv.appendChild(document.createElement('br'));
questionDiv.appendChild(falseInput);
questionDiv.appendChild(falseLabel);
quizContainer.appendChild(questionDiv);
});
}
function leerArchivoJSON(file, numPreguntas) {
const reader = new FileReader();
reader.onload = function(event) {
try {
const data = JSON.parse(event.target.result);
if (!data.preguntas || !Array.isArray(data.preguntas)) {
throw new Error('El archivo JSON no tiene el formato correcto.');
}
generarQuiz(data.preguntas, numPreguntas);
document.getElementById('submit-btn').style.display = 'block';
document.getElementById('retry-btn').style.display = 'block';
} catch (error) {
console.error('Error al leer el archivo JSON:', error);
alert('Error al leer el archivo JSON: ' + error.message);
}
};
reader.readAsText(file);
}
document.getElementById('load-btn').addEventListener('click', function() {
const fileInput = document.getElementById('file-input');
const numPreguntas = parseInt(document.getElementById('num-questions').value);
if (fileInput.files.length > 0 && numPreguntas > 0) {
const archivo = fileInput.files[0];
leerArchivoJSON(archivo, numPreguntas);
document.getElementById('result').textContent = '';
document.getElementById('feedback').innerHTML = '';
window.scrollTo(0, 0);
} else {
alert('Por favor, selecciona un archivo JSON y un número de preguntas mayor a 0.');
}
});
document.getElementById('submit-btn').addEventListener('click', function() {
const resultDiv = document.getElementById('result');
const feedbackDiv = document.getElementById('feedback');
let aciertos = 0;
let feedback = '';
preguntasSeleccionadas.forEach((pregunta, index) => {
const respuesta = document.querySelector(`input[name="pregunta${index}"]:checked`);
const preguntaTexto = pregunta.texto;
const respuestaCorrecta = pregunta.respuesta;
if (respuesta) {
const respuestaUsuario = respuesta.value === 'true' ? 'Verdadero' : 'Falso';
const esCorrecto = (respuesta.value === 'true') === respuestaCorrecta;
if (esCorrecto) {
aciertos++;
feedback += `<p class="correct">${index + 1}. ${preguntaTexto} - Has respondido que es ${respuestaUsuario} y es correcto.</p>`;
} else {
feedback += `<p class="incorrect">${index + 1}. ${preguntaTexto} - Has respondido que es ${respuestaUsuario} y es incorrecto.</p>`;
}
} else {
feedback += `<p class="unanswered">${index + 1}. ${preguntaTexto} - Sin respuesta</p>`;
}
});
resultDiv.textContent = `Has acertado ${aciertos} de ${preguntasSeleccionadas.length} preguntas.`;
feedbackDiv.innerHTML = feedback;
});
document.getElementById('retry-btn').addEventListener('click', function() {
const fileInput = document.getElementById('file-input');
const numPreguntas = parseInt(document.getElementById('num-questions').value);
if (fileInput.files.length > 0 && numPreguntas > 0) {
const archivo = fileInput.files[0];
leerArchivoJSON(archivo, numPreguntas);
document.getElementById('result').textContent = '';
document.getElementById('feedback').innerHTML = '';
window.scrollTo(0, 0);
} else {
alert('Por favor, selecciona un archivo JSON y un número de preguntas mayor a 0.');
}
});
</script>
</body>
</html>