-
Notifications
You must be signed in to change notification settings - Fork 0
/
gracias.html
85 lines (71 loc) · 3.88 KB
/
gracias.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
<!DOCTYPE html>
<html lang="en">
<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="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<!-- bootstrap 4 js -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" ></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" ></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" ></script>
<!-- iconos -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://fontawesome.com/v4.7.0/assets/css/site.css">
<!-- mi estilo animacion -->
<script src="https://code.createjs.com/1.0.0/createjs.min.js"></script>
<!-- animación css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
<!-- Mi estilos -->
<link rel="stylesheet" href="css/fuente.css">
<link rel="stylesheet" href="css/estilo.css">
</head>
<style>
table tr td
{
border: 1px solid rgba(0, 0, 0, .5);
padding: 5px;
}
</style>
<body >
<div style="text-align: center; align-items: center;justify-content: center;">
<div style="display:inline; width: 300px;height:auto;box-sizing: border-box;margin: 0 auto;padding: 15px; ">
<img src="images/logo.svg" alt="corporacion financiera nacional" style="width: 200px;">
<h1>
GRACIAS POR PARTICIPAR
</h1>
</div>
<div id="resultados" align="center"></div>
</div>
<script>
var index = ['index-Nombre','index-Edad','index-Experiencia','index-Trabajo','index-Instruccion'];
var seciones = ['globo1-PrintGanado','globo1-NumeroClick','globo1-Cronometro','globo1-NumAleatorio',
'globo2-PrintGanado','globo2-NumeroClick','globo2-Cronometro','globo2-NumAleatorio',
'globo3-PrintGanado','globo3-NumeroClick','globo3-Cronometro','globo3-NumAleatorio',
'globo-sumatotaldesecciones'];
var valoresFormulario1 = ['Encuesta1-valor1','Encuesta1-valor2','Encuesta1-valor3','Encuesta1-valor4','Encuesta1-sumaTotal','Encuesta1-temporizador'];
var valoresFormulario2 = ['Encuesta2-valor1','Encuesta2-valor2','Encuesta2-sumaTotal','Encuesta2-temporizador'];
var valoresFormulario3 = ['Encuesta3-valor1','Encuesta3-valor2','Encuesta3-valor3','Encuesta3-valor4','Encuesta3-valor5','Encuesta3-valor6','Encuesta3-sumaTotal','Encuesta3-temporizador'];
var valoresFormulario4 = ['Encuesta4-valor1','Encuesta4-valor2','Encuesta4-valor3','Encuesta4-valor4','Encuesta4-sumaTotal','Encuesta4-temporizador'];
var resultados = [index,seciones,valoresFormulario1,valoresFormulario2,valoresFormulario3,valoresFormulario4];
var divResultados = document.getElementById('resultados');
var contenido;
for(var i = 0; i < resultados.length; i++)
{
for(var j = 0 ; j < resultados[i].length; j++)
{
contenido += '<tr><td>' + resultados[i][j] + '</td><td>' + localStorage.getItem(resultados[i][j]) + '</td><tr>';
}
}
let tabla = document.createElement('table');
tabla.innerHTML = contenido;
document.querySelector('div#resultados').appendChild(tabla);
</script>
</body>
</html>