-
Notifications
You must be signed in to change notification settings - Fork 0
/
globoSergio.html
72 lines (63 loc) · 2.66 KB
/
globoSergio.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
<!DOCTYPE html>
<html lang="es-ES">
<head >
<!-- Favicons -->
<link rel="apple-touch-icon" href="https://www.cfn.fin.ec/wp-content/themes/cfn/img/favicon.png"/>
<link rel="icon" href="https://www.cfn.fin.ec/wp-content/themes/cfn/img/favicon.png"/>
<link rel="icon" href="https://www.cfn.fin.ec/wp-content/themes/cfn/img/favicon.ico"/>
<title>CFN - Juega</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- BootstrapCDN 4 -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- bootstrap 4 js -->
<script src="js/jquery-3.4.1.min.js"></script>
<script src="js/jsgloboSergio.js" defer></script>
<!-- Mi estilos -->
<link rel="stylesheet" href="css/fuente.css">
<link rel="stylesheet" href="css/estilo.css">
</head>
<body id="terminamos">
<div id="presentarResultado" style="display: flex;position: absolute; background-color: rgba(0, 0, 0, .6);width: 100%;height: 100%;z-index: 999;justify-content:center;
align-items:center;">sss</div>
<div class="container">
<div class="row">
<div class="col">
<p id="tiempoCronometro" style="font-size: 20px">Tiempo: 01:00:00</p>
</div>
<div class="col">
<p id="puntoGanPer" style="font-size: 20px">Has ganado: 0</p>
</div>
</div>
<div class="row cabeceraIndex">
<div class="col contenedorGlobo">
<div class="punto" id="click-Veses">0</div>
<div class="globo" id="globoJuego" >🎈</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col col-md-6 col-sm-12">
<button class="btn btn-primary btn-lg btn-block" id="inflar" onclick="apretandoParaInflar()">Inflar</button>
</div>
<div class="col col-md-6 col-sm-12">
<button class="btn btn-primary btn-lg btn-block" id="desinflar" onclick="detenerBtm(1)">Detener</button>
</div>
<div class="col-sm-12">
<button class="btn btn-primary btn-lg btn-block" id="empezar" onclick="empiezaCronometro2()">Empezar a jugar</button>
</div>
<div class="col-sm-12">
<button class="btn btn-primary btn-lg btn-block" id="siguiente" style="display:none;color: white;" onclick="presentarValorPorPantalla()">siguiente</button>
</div>
</div>
</div>
<div class="separador"></div>
<script>
$('#inflar').hide();
$('#desinflar').hide();
$('#presentarResultado').hide();
</script>
</body>
</html>