-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
87 lines (73 loc) · 2.78 KB
/
app.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
// Función para mostrar la alerta personalizada
function showAlert(message) {
const alertBox = document.getElementById('customAlert');
const alertMessage = document.getElementById('customAlertMessage');
const alertButton = document.getElementById('customAlertButton');
alertMessage.textContent = message;
alertBox.style.display = 'flex';
alertButton.addEventListener('click', function() {
alertBox.style.display = 'none';
});
}
// Función para encriptar el texto
function encriptarTexto() {
let textoOriginal = document.getElementById('Escribe').value.toLowerCase();
let textoEncriptado = textoOriginal
.replace(/e/g, 'enter')
.replace(/i/g, 'imes')
.replace(/a/g, 'ai')
.replace(/o/g, 'ober')
.replace(/u/g, 'ufat');
let resultadosDiv = document.querySelector('.resultados');
resultadosDiv.innerHTML = `
<img class="waiting" id="waiting" src="img/check.png" alt="texto encriptado">
<div class="textoReloj">
<p id="mensajeEncriptado">${textoEncriptado}</p>
</div>
<button class="copiar" id="copiar" type="button">
<p>Copiar</p>
</button>
`;
let botonCopiar = document.getElementById('copiar');
botonCopiar.disabled = false;
botonCopiar.addEventListener('click', copiarTexto);
}
document.getElementById('buttonEn').addEventListener('click', function() {
encriptarTexto();
});
function desencriptarTexto() {
let textoOriginal = document.getElementById('Escribe').value.toLowerCase();
let textoDecrypt = textoOriginal
.replace(/enter/g, 'e')
.replace(/imes/g, 'i')
.replace(/ai/g, 'a')
.replace(/ober/g, 'o')
.replace(/ufat/g, 'u');
let resultadosDiv = document.querySelector('.resultados');
resultadosDiv.innerHTML = `
<img class="waiting" id="waiting" src="img/check.png" alt="texto encriptado">
<div class="textoReloj">
<p id="mensajeEncriptado">${textoDecrypt}</p>
</div>
<button class="copiar" id="copiar" type="button">
<p>Copiar</p>
</button>
`;
let botonCopiar = document.getElementById('copiar');
botonCopiar.disabled = false;
botonCopiar.addEventListener('click', copiarTexto);
}
document.getElementById('buttonDe').addEventListener('click', function() {
desencriptarTexto();
});
function copiarTexto() {
let mensajeEncriptado = document.getElementById('mensajeEncriptado');
if (mensajeEncriptado) {
let textoACopiar = mensajeEncriptado.innerText;
navigator.clipboard.writeText(textoACopiar).then(function() {
showAlert('Texto copiado al portapapeles');
}).catch(function(err) {
console.error('Error al copiar el texto: ', err);
});
}
}