-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
163 lines (112 loc) · 4.22 KB
/
index.html
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0">
<title>Document</title>
<!-- CSS only -->
<link rel="stylesheet" href="estilos.css">
</head>
<body>
<div class="contenedor">
<header class="header">
<img src="Vectorletra.png" alt="Traductor para Alura">
</header>
<main class="texto">
<img src="input.png" id="input" alt="Ingrese aquí su texto">
<textarea class="ingrese-texto" id="Textarea"></textarea>
</main>
<Aside class="codigo">
<img src="1.png" id="imagen1" alt="Traductor para Alura">
<p class="textocodigo" id="textocopiar"></p>
<button class="button-copiar" type="button" id="copiar">Copiar</button>
</Aside>
<div class="boton1">
<button class="button-codificar" type="button" id="codificar">Encriptar</button>
</div>
<div class="boton2">
<button class="button-decodificar" type="button" id="decodificar">Desencriptar</button>
</div>
<footer class="footer">
<p class="text-center text-muted">Encriptador 2022 para Alura por <a href="https://www.linkedin.com/in/juan-carlos-olivares-román-a3b452142/" class="nav-link px-2 text-muted"> Janter Cyrano </a></p>
</footer>
</div>
<script>
//'a'|'ai', 'e'|'enter', 'i'|'imes', 'o'|'ober', 'u'|'ufat'
var texto = document.getElementById("Textarea");
var textocopiar = document.getElementById("textocopiar");
var boton = document.getElementById("codificar");
var boton2 = document.getElementById("decodificar");
var boton3 = document.getElementById("copiar");
var input = document.getElementById("input");
var imagen1=document.getElementById("imagen1");
texto.style.visibility="hidden"
boton3.style.visibility="hidden"
function codificar(e) {
var codigo = "";
for (let i = 0; i < texto.value.length; i++) {
if (texto.value.charAt(i) == 'a') {
codigo += 'ai';
} else if (texto.value.charAt(i) == 'e') {
codigo +='enter';
} else if (texto.value.charAt(i) == 'i') {
codigo +='imes';
} else if (texto.value.charAt(i) == 'o') {
codigo +='ober';
} else if (texto.value.charAt(i) == 'u') {
codigo += 'ufat';
} else {
codigo += texto.value.charAt(i);
}
}
e.preventDefault();
textocopiar.append(codigo);
mostrarCodigo();
}
function decodificar(e) {
var codigo = "";
for (let i = 0; i < texto.value.length; i++) {
if (texto.value.charAt(i) == 'a' && texto.value.charAt(i+1) == 'i') {
codigo += 'a';
i+=1;
} else if (texto.value.charAt(i) == 'e' && texto.value.charAt(i+1) == 'n') {
codigo +='e';
i+=4;
} else if (texto.value.charAt(i) == 'i' && texto.value.charAt(i+1) == 'm') {
codigo +='i';
i+=3;
} else if (texto.value.charAt(i) == 'o' && texto.value.charAt(i+1) == 'b') {
codigo +='o';
i+=3;
} else if (texto.value.charAt(i) == 'u' && texto.value.charAt(i+1) == 'f') {
codigo += 'u';
i+=3;
} else {
codigo += texto.value.charAt(i);
}
}
e.preventDefault();
textocopiar.append(codigo);
mostrarCodigo();
}
function copiar() {
// no me funciono el execComand()
navigator.clipboard.writeText(textocopiar.innerText);
//alert("el código ha sido copiado"); //<-como opción se puede lanzar una Alerta
}
function mostrarTexto(){
input.style.display= "none"
texto.style.visibility= "visible"
}
function mostrarCodigo(){
imagen1.style.display= "none";
boton3.style.visibility= "visible";
}
input.onclick= mostrarTexto;
boton.onclick= codificar;
boton2.onclick= decodificar;
boton3.onclick= copiar;
</script>
</body>
</html>