-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
50 lines (43 loc) · 1.6 KB
/
script.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
const textArea = document.querySelector(".text_area");
const mensaje = document.querySelector(".mensaje");
function botonEncriptar(){
const textoEncriptado = encriptar(textArea.value);
mensaje.value=textoEncriptado;
textArea.value = " ";
mensaje.style.backgroundImage = "none";
}
function encriptar(stringEncriptado){
let matriCod =[["e","enter"],["i", "imes"], ["a", "ai"], ["o","ober"], ["u", "ufat"]];
stringEncriptado = stringEncriptado.toLowerCase();
for (let i=0; i<matriCod.length; i++)
{
if (stringEncriptado.includes(matriCod[i][0]))
{
stringEncriptado=stringEncriptado.replaceAll(matriCod[i][0], matriCod[i][1]);
}
}
return stringEncriptado;
}
function botondesencriptar(){
const textoEncriptado = desencriptar(textArea.value);
mensaje.value= textoEncriptado;
textArea.value = " ";
}
function desencriptar(stringdesencriptado){
let matriCod =[["e","enter"],["i", "imes"], ["a", "ai"], ["o","ober"], ["u", "ufat"]];
stringdesencriptado =stringdesencriptado.toLowerCase();
for (let i=0; i<matriCod.length; i++)
{
if (stringdesencriptado.includes(matriCod[i][1]))
{
stringdesencriptado=stringdesencriptado.replaceAll(matriCod[i][1], matriCod[i][0]);
}
}
return stringdesencriptado;
}
function copiar() {
var texto = document.querySelector(".mensaje");
texto.select();
texto.setSelectionRange(0, texto.value.length);
document.execCommand('copy');
}