-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
37 lines (37 loc) · 2 KB
/
main.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
function encriptar() {
var texto = document.getElementById("inputTexto").value.toLowerCase();
var txtCifrado = texto.replace(/e/igm,"enter");
var txtCifrado = txtCifrado.replace(/o/igm,"ober");
var txtCifrado = txtCifrado.replace(/i/igm,"imes");
var txtCifrado = txtCifrado.replace(/a/igm,"ai");
var txtCifrado = txtCifrado.replace(/u/igm,"ufat")
document.getElementById("imgDer").style.display = "none";
document.getElementById("textDer").style.display = "none";
document.getElementById("titleDer").style.display = "none";
document.getElementById("textResult").style.display = "show";
document.getElementById("textResult").style.display = "inherit";
document.getElementById("textResult").innerHTML = txtCifrado;
document.getElementById("copy").style.display = "show";
document.getElementById("copy").style.display = "inherit";
}
function desencriptar() {
var texto = document.getElementById("inputTexto").value.toLowerCase();
var txtCifrado = texto.replace(/enter/igm,"e");
var txtCifrado = txtCifrado.replace(/ober/igm,"o");
var txtCifrado = txtCifrado.replace(/imes/igm,"i");
var txtCifrado = txtCifrado.replace(/ai/igm,"a");
var txtCifrado = txtCifrado.replace(/ufat/igm,"u");
document.getElementById("imgDer").style.display = "none";
document.getElementById("textDer").style.display = "none";
document.getElementById("titleDer").style.display = "none";
document.getElementById("textResult").style.display = "show";
document.getElementById("textResult").style.display = "inherit";
document.getElementById("textResult").innerHTML = txtCifrado;
document.getElementById("copy").style.display = "show";
document.getElementById("copy").style.display = "inherit";
}
function copy(){
var contenido = document.querySelector("#textResult");
contenido.select();
document.execCommand("copy");
}