-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
104 lines (86 loc) · 2.73 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
var botonEncriptador = document.querySelector(".botonEncriptar");
var botonDesencriptador = document.querySelector(".botonDesencriptar");
var contenedorToys = document.querySelector(".contenedorToys");
var contenedor = document.querySelector(".contenedorParrafo");
var resultado = document.querySelector(".TextoResultado");
botonEncriptador.onclick = encriptar;
botonDesencriptador.onclick = desencriptar;
function encriptar(){
ocultarAdelante();
var cajaDeTexto = recuperarTexto()
resultado.textContent = encriptarTexto(cajaDeTexto);
}
function desencriptar (){
ocultarAdelante();
var cajaDeTexto = recuperarTexto()
resultado.textContent = desencriptarTexto(cajaDeTexto);
}
function recuperarTexto(){
var cajaDeTexto = document.querySelector(".cajaDeTexto")
return cajaDeTexto.value
}
function ocultarAdelante(){
contenedorToys.classList.add("ocultar");
contenedor.classList.add("ocultar");
}
function encriptarTexto(mensaje){
var texto = mensaje;
var textoFinal = "";
for(var i = 0; i < texto.length; i++){
if(texto[i] == "a"){
textoFinal = textoFinal + "ai"
}
else if (texto[i] == "e"){
textoFinal = textoFinal + "enter"
}
else if (texto[i] == "i"){
textoFinal = textoFinal + "imes"
}
else if (texto[i] == "o"){
textoFinal = textoFinal + "ober"
}
else if (texto[i] == "u"){
textoFinal = textoFinal + "ufat"
}
else {
textoFinal = textoFinal + texto[i]
}
}
return textoFinal;
}
function desencriptarTexto (mensaje){
var texto = mensaje;
var textoFinal = "";
for(var i = 0 ; i < texto.length; i++){
if(texto[i] == "a"){
textoFinal = textoFinal + "a"
i = i+1;
}
else if(texto[i] == "e"){
textoFinal = textoFinal +"e"
i = i+4;
}
else if(texto[i] == "i"){
textoFinal = textoFinal + "i"
i = i+3;
}
else if(texto[i] == "o"){
textoFinal = textoFinal + "o"
i = i+3;
}
else if(texto[i] == "u"){
textoFinal = textoFinal + "u"
i = i+3;
}
else {
textoFinal = textoFinal + texto[i];
}
}
return textoFinal;
}
const btnCopiar = document.querySelector(".btnCopiar");
btnCopiar.addEventListener("click" , copiar = () =>{
var contenido = document.querySelector(".TextoResultado").textContent;
navigator.clipboard.writeText(contenido);
})
console.log("Si ves este mensaje dele click al logo")