-
Notifications
You must be signed in to change notification settings - Fork 0
/
javascript.js
86 lines (78 loc) · 2.14 KB
/
javascript.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
var arr = Array(8).fill(false);
var posicion = 1, valor = 0;
function aumentar() {
if (arr[posicion-1] === false) {
encender(posicion);
arr[posicion-1] = true;
posicion = 1;
valor += 1;
}
else {
apagar(posicion);
arr[posicion-1] = false;
posicion += 1;
if (posicion === 9) {
posicion = 1;
valor = 0;
}
else {
aumentar();
}
}
document.getElementById("valor_decimal").innerHTML = valor;
}
function disminuir() {
if (valor > 0) {
if (arr[posicion-1] === false) {
encender(posicion);
arr[posicion-1] = true;
posicion += 1;
if (valor < 1) {
}
else {
disminuir();
}
}
else {
apagar(posicion);
arr[posicion-1] = false;
posicion = 1;
valor -= 1;
document.getElementById("valor_decimal").innerHTML = valor;
}
}
else {
arr[0] = true;
arr[1] = true;
arr[2] = true;
arr[3] = true;
arr[4] = true;
arr[5] = true;
arr[6] = true;
arr[7] = true;
encender(1);
encender(2);
encender(3);
encender(4);
encender(5);
encender(6);
encender(7);
encender(8);
valor = 255;
document.getElementById("valor_decimal").innerHTML = "255";
}
}
function encender(lugar) {
let padre = document.getElementById("no" + lugar);
let apagado = padre.querySelector(".apagado");
let encendido = padre.querySelector(".encendido");
apagado.style.transform = "rotateX(180deg)";
encendido.style.transform = "rotateX(360deg)";
}
function apagar(lugar) {
let padre = document.getElementById("no" + lugar);
let apagado = padre.querySelector(".apagado");
let encendido = padre.querySelector(".encendido");
encendido.style.transform = "rotateX(180deg)";
apagado.style.transform = "rotateX(360deg)";
}