-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
89 lines (80 loc) · 2.79 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
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
const textoEncriptador = document.getElementById("textoEncriptador");
const botonEncriptar = document.getElementById("botonEncriptar");
const botonDesencriptar = document.getElementById("botonDesencriptar");
const seccionDer = document.getElementById("seccionDer");
const ilustracion = document.getElementById("ilustracion");
const mensajeEncriptado = document.getElementById("mensajeEncriptado");
const tituloMensaje = document.getElementById("tituloMensaje");
const textoMensaje = document.getElementById("textoMensaje");
const botonCopiar = document.getElementById("botonCopiar");
// La letra "e" es convertida para "enter"
// La letra "i" es convertida para "imes"
// La letra "a" es convertida para "ai"
// La letra "o" es convertida para "ober"
// La letra "u" es convertida para "ufat"
let remplazar = [
["e", "enter"],
["i", "imes"],
["a", "ai"],
["o", "ober"],
["u", "ufat"],
];
const replace = (nuevoValor) => {
mensajeEncriptado.classList.add("ajustar");
ilustracion.classList.add("ocultar");
tituloMensaje.innerHTML = nuevoValor;
tituloMensaje.classList.add("ajuste");
textoMensaje.style.display = "none";
botonCopiar.style.display = "block";
textoEncriptador.value = "";
};
const reset = () => {
tituloMensaje.innerHTML = "";
ilustracion.classList.remove("ocultar");
textoMensaje.style.display = "block";
botonCopiar.style.display = "none";
mensajeEncriptado.classList.remove("ajustar");
tituloMensaje.classList.remove("ajuste");
textoEncriptador.focus();
};
botonEncriptar.addEventListener("click",() => {
const texto = textoEncriptador.value.toLowerCase()
if(texto !== ""){
function encriptar(newText) {
for (let i = 0; i < remplazar.length; i++){
if(newText.includes(remplazar[i][0])){
newText = newText.replaceAll(remplazar[i][0], remplazar[i][1])
};
};
return newText;
}
} else {
alert("Ingrese texto para encriptar");
reset();
}
replace(encriptar(texto));
});
botonDesencriptar.addEventListener("click", () => {
const texto = textoEncriptador.value.toLowerCase();
if(texto !=="") {
function desencriptar(newText) {
for (let i = 0; i < remplazar.length; i++){
if(newText.includes(remplazar[i][1])){
newText = newText.replaceAll(remplazar[i][1], remplazar[i][0])
};
};
return newText;
};
} else {
alert("Ingrese texto para desencriptar")
reset();
}
replace(desencriptar(texto));
});
botonCopiar.addEventListener("click", () => {
let texto = tituloMensaje;
texto.select();
document.execCommand('copy');
alert("Texto copiado al portapapeles!");
reset();
});