-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gato.html
88 lines (76 loc) · 1.74 KB
/
Gato.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Gato</title>
</head>
<body>
<p> Tiempo jugador <div id="TiempoJugador"> </div></p>
<p> Tiempo Total <div id="TiempoTotal"> </div> </p>
<button id="a1" onclick="juega(); "> </button>
<button id="a2" onclick="juega(); "> </button>
<button id="a3" onclick="juega(); "> </button>
<p></p>
<button id="b1" onclick="juega(); "> </button>
<button id="b2" onclick="juega(); "> </button>
<button id="b3" onclick="juega(); "> </button>
<p></p>
<button id="c1" onclick="juega(); "> </button>
<button id="c2" onclick="juega(); "> </button>
<button id="c3" onclick="juega(); "> </button>
<script>
var w1,w2,turno1,turno2,tiempoTotal,tiempoJugador;
function turnos()
{
if (turno1)
{
}
else{
}
}
function juega()
{
//tiempo total
if (typeof(Worker)!= "undefined")
{
if (typeof(w1)=="undefined")
{
w1 = new Worker("demoWorker.js");
w1.onmessage = function(event)
{
document.getElementById('TiempoTotal').innerHTML=event.data;
}
w2 = new Worker("demoWorker.js");
w2.onmessage = function(event)
{
document.getElementById('TiempoJugador').innerHTML=event.data;
}
}
}
else
{
alert("El navegador no soporta workers");
}
//Tiempo Jugador
if (typeof(Worker)!= "undefined")
{
if (typeof(w2)!="undefined")
{
w2.terminate();
w2=undefined;
w2 = new Worker("demoWorker.js");
w2.onmessage = function(event)
{
document.getElementById('TiempoJugador').innerHTML=event.data;
}
}
}
else
{
alert("El navegador no soporta workers");
}
//Actualiza botones. Value
}
</script>
</body>
</html>