-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.js
72 lines (57 loc) · 2.65 KB
/
index2.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
function encriptar(){
let codifica = document.getElementById("area1").value;
let anuncio = document.getElementById("titulo-mensaje");
let bloque = document.getElementById("mensajeC");
let vistiBueno = document.getElementById("ima-inicio");
let respuesta = codifica
.replace(/e/gi,"enter")
.replace(/i/gi,"imes")
.replace(/a/gi,"ai")
.replace(/o/gi,"ober")
.replace(/u/gi,"ufat");
if(codifica.length !=0){
document.getElementById("area1").value = respuesta;
anuncio.textContent = "Texto encriptado con exito";
bloque.textContent= respuesta;
vistiBueno.src = "./imagenes/ok2.gif"
}else{
vistiBueno.src = "./imagenes/what.gif";
bloque.textContent= " ";
anuncio.textContent = "No se encriptó ningun texto";
swal("¡OJO!","Debes ingresar un texto","warning");
}
}
function desencriptar(){
let codifica = document.getElementById("area1").value;
let anuncio = document.getElementById("titulo-mensaje");
let bloque = document.getElementById("mensajeC");
let vistiBueno = document.getElementById("ima-inicio");
let respuesta = codifica
.replace(/enter/gi,"e")
.replace(/imes/gi,"i")
.replace(/ai/gi,"a")
.replace(/ober/gi,"o")
.replace(/ufat/gi,"u");
if(codifica.length != 0){
document.getElementById("area1").value = respuesta;
anuncio.textContent = "Texto desencriptado con exito";
bloque.textContent= respuesta;
vistiBueno.src = "./imagenes/ok.gif"
}else{
vistiBueno.src = "./imagenes/desencriptar.gif";
bloque.textContent= " ";
anuncio.textContent = "No se desencriptó ningun texto";
swal("¡OJO!","Debes ingresar un texto","warning");
}
}
function lea(){
let texto = document.querySelector('#mensajeC').value;
return texto;
}
async function co(){
let txt = lea();
await navigator.clipboard.writeText(txt);
}
function copia(){
co();
}