-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
177 lines (117 loc) · 5.17 KB
/
index.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="estilos.css" />
<title>Document</title>
</head>
<body>
<header>
<div class="barra-superior">
<a href=""> <img src="./assets/banner/Logo-Alura.png" /></a>
<a href=""> <img src="./assets/banner/Logo Oracle.png" /></a>
</div>
</header>
<article>
<div class="posicion">
<div>
<div>
<p class="centrar-textarea">
<textarea name="" id="textarea" rows="" cols="" placeholder="Ingrese el texto aqui!"
oninput='this.style.height = "";this.style.height = this.scrollHeight + "px"'></textarea>
</p>
</div>
<div class="advertencia">
<img src="./assets/Advertencia.png" />
<p>Solo letras minisculas y sin acentos</p>
</div>
<div class="centrar-boton">
<button id="encriptar" class="boton-estilo-1">Encriptar</button>
<button id="desencriptar" class="boton-estilo-2">Desencriptar</button>
</div>
</div>
<div class="cartelito">
<p class="mensaje-1" id="resul">Ningun mensaje fue encontrado</p>
<p class="mensaje-2" id="mensaje">Ingresa el texto que desees encriptar o desencriptar</p>
<img class="imagen" id="imagen" src="./assets/Muñeco.png">
<button class="boton-estilo-3" onclick="copiaralportapapeles()" id="copiar">copiar</button>
</div>
</div>
</article>
</body>
<script>
let entrada = document.getElementById("textarea");
let button1 = document.getElementById("encriptar");
let button2 = document.getElementById("desencriptar");
document.getElementById("copiar").style.display = 'none';
let texto;
let textoEncriptado;
function validaciontexto() {
let cartel = document.getElementById("mensaje").innerHTML;
let resul = document.getElementById("resul").innerHTML;
let img = document.getElementById("imagen").innerHTML;
texto = textarea.value;
validez = true;
for (let i = 0; i < texto.length; i++) {
if ((texto.charCodeAt(i) < 97 || texto.charCodeAt(i) > 122) && (texto.charCodeAt(i) !== 32)) {
cartel = document.getElementById("mensaje").innerHTML = "revise el texto ingresado, solo letras minusculas y sin acentos";
resul = document.getElementById("resul").innerHTML = "Error!"
validez = false;
break;
}
}
if (texto.length == 0) {
cartel = document.getElementById("mensaje").innerHTML = "No a ingresado ningun texto";
resul = document.getElementById("resul").innerHTML = "Ningun mensaje fue encontrado"
validez = false;
}
if (validez) {
cartel = document.getElementById("mensaje").style.display = 'visibility';
img = document.getElementById("imagen").style.display = 'none';
} else {
cartel = document.getElementById("mensaje").style.display = 'block';
document.getElementById("copiar").style.display = 'none';
}
return validez;
}
function encriptador() {
texto = textarea.value;
if (validaciontexto()) {
textoEncriptado = texto.replace(/e/g, "enter");
textoEncriptado = textoEncriptado.replace(/i/g, "imes");
textoEncriptado = textoEncriptado.replace(/o/g, "ober");
textoEncriptado = textoEncriptado.replace(/a/g, "ai");
textoEncriptado = textoEncriptado.replace(/u/g, "ufat");
mostrar(textoEncriptado);
}
}
function desencriptador() {
texto = textarea.value;
if (validaciontexto()) {
textoDesencriptado = texto.replace(/enter/g, "e");
textoDesencriptado = textoDesencriptado.replace(/imes/g, "i");
textoDesencriptado = textoDesencriptado.replace(/ai/g, "a");
textoDesencriptado = textoDesencriptado.replace(/ober/g, "o");
textoDesencriptado = textoDesencriptado.replace(/ufat/g, "u");
mostrar(textoDesencriptado);
}
}
function mostrar(texto) {
document.getElementById("copiar").style.display = 'block';
let cartel = document.getElementById("resul").innerHTML = texto;
}
function copiaralportapapeles() {
const type = "text/plain";
const blob = new Blob([textoEncriptado], { type });
const data = [new ClipboardItem({ [type]: blob })];
navigator.clipboard.write(data);
document.getElementById("mensaje").style.display = 'block';
let cartel = document.getElementById("mensaje").innerHTML
= "Se a copiado el mensaje al portapapeles";
}
button1.onclick = encriptador;
button2.onclick = desencriptador;
</script>
</html>