-
Notifications
You must be signed in to change notification settings - Fork 0
/
js.js
102 lines (94 loc) · 2.73 KB
/
js.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
let wakeLock = null;
const requestWakeLock = async () => {
if (!('wakeLock' in navigator)) {
console.log("'wakeLock' no disponible en este navegador");
return;
}
try {
wakeLock = await navigator.wakeLock.request('screen');
wakeLock.addEventListener('release', () => {
console.log('Screen Wake Lock was released');
});
console.log('Screen Wake Lock is active');
} catch (err) {
console.error(`${err.name}, ${err.message}`);
}
};
//definir globales
window.CONFIG = { segundos: 8, pausa: true };
window.onload = function () {
inicializa();
};
function inicializa() {
const aux = new Array(91);
const numeros = [...aux.keys()];
numeros.shift();
window.NUMEROS = numeros;
window.PREMIADOS = [];
// pintar la tabla
let tabla = document.querySelector('table[name=tabla-numeros] tbody');
tabla.innerHTML = '';
let tr = '<tr>';
for (let i = 1; i <= 90; i++) {
tr += `<td numero='${i}'>${i}</td>`;
if (i % 10 == 0) {
tabla.innerHTML += tr + '</tr>';
tr = '<tr>';
}
}
tr += '</tr>';
tabla.innerHTML += tr;
document.querySelector('#rangeVelocidad').value = window.CONFIG.segundos;
}
function sacaNumero() {
//sacar un numero y devolver
if (window.NUMEROS.length == 0) {
return false;
}
const min = 0;
const max = window.NUMEROS.length - 1;
const elegido = Math.floor(Math.random() * (max + 1 - min)) + min;
const vuelta = window.NUMEROS[elegido];
//quitar el elegido del array
window.NUMEROS = [...window.NUMEROS.slice(0, elegido), ...window.NUMEROS.slice(elegido + 1)];
window.PREMIADOS = vuelta;
return vuelta;
}
function comienza() {
if (window.NUMEROS === undefined) inicializa();
window.miTimeOut = setTimeout(function () {
if (window.CONFIG.pausa) return;
let numero = sacaNumero();
if (numero === false) {
console.log('Fin!');
return;
}
console.log(numero);
document.querySelector('[name=numero]').innerHTML = numero;
document.querySelector(`table tbody td[numero='${numero}']`).classList.add('bg-danger', 'text-white');
let speech = new SpeechSynthesisUtterance();
speech.text = String(numero);
window.speechSynthesis.speak(speech);
comienza();
}, window.CONFIG.segundos * 1000);
}
function pausa() {
window.CONFIG.pausa = !window.CONFIG.pausa;
if (!window.CONFIG.pausa) {
comienza();
}
document.querySelector('button[name=btnPausa]').innerHTML = window.CONFIG.pausa
? `<i class="bi bi-play-circle"></i> SIGUE`
: `<i class="bi bi-pause-fill"></i> PAUSA`;
}
function cambiaVelocidad() {
let velocidad = document.querySelector('#rangeVelocidad').value;
window.CONFIG.segundos = velocidad;
}
function reiniciar() {
/* window.CONFIG.pausa = false;
document.querySelector('[name=numero]').innerHTML = '';
clearTimeout(window.miTimeOut);
inicializa();*/
window.location.reload(true);
}