-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
58 lines (51 loc) · 2.46 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
// Función para encriptar el texto
function encriptar() {
let texto = document.getElementById("texto").value;
let textoEncriptado = texto
.replace(/e/g, "enter")
.replace(/i/g, "imes")
.replace(/a/g, "ai")
.replace(/o/g, "ober")
.replace(/u/g, "ufat");
// Actualizar el contenido del campo de presentación
document.getElementById("textoEncriptado").innerText = textoEncriptado;
document.getElementById("textoEncriptado").style.display = "block";
document.querySelector(".imagen").style.display = "none";
document.querySelector(".mensaje-inicial").style.display = "none";
document.querySelector(".btn-copiar").style.visibility = "visible";
}
// Función para desencriptar el texto
function desencriptar() {
let texto = document.getElementById("texto").value;
let textoDesencriptado = texto
.replace(/enter/g, "e")
.replace(/imes/g, "i")
.replace(/ai/g, "a")
.replace(/ober/g, "o")
.replace(/ufat/g, "u");
// Actualizar el contenido del campo de presentación
document.getElementById("textoEncriptado").innerText = textoDesencriptado;
document.getElementById("textoEncriptado").style.display = "block";
document.querySelector(".imagen").style.display = "none";
document.querySelector(".mensaje-inicial").style.display = "none";
document.querySelector(".btn-copiar").style.visibility = "visible";
}
// Función para copiar el texto encriptado y pegarlo en el campo de entrada
function copiarTexto() {
let textoEncriptado = document.getElementById("textoEncriptado").innerText;
navigator.clipboard.writeText(textoEncriptado).then(function() {
document.getElementById("texto").value = textoEncriptado;
}).catch(function(error) {
console.error("Error al copiar al portapapeles: ", error);
});
}
// Función para ajustar la altura del textarea automáticamente
function ajustarAlturaTextarea() {
const textarea = document.getElementById('texto');
textarea.style.height = 'auto'; // Restablece la altura para recalcular
textarea.style.height = textarea.scrollHeight + 'px'; // Ajusta la altura según el contenido
}
// Escuchar cambios en el campo de texto para ajustar la altura
document.getElementById('texto').addEventListener('input', ajustarAlturaTextarea);
// Asegurarse de que el ajuste de altura se aplique al cargar el contenido inicial
ajustarAlturaTextarea();