-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
145 lines (134 loc) · 5.38 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
<!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, initial-scale=1.0">
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<script src="./js/encriptador.js"></script>
<title>Encriptador de texto</title>
</head>
<body>
<header>
<img class = "logo" src="img/alura.png" alt="Logo de Alura">
<p class="titulo">Alura - Challenge One | Encriptador de texto</p>
</header>
<main>
<div class="intro-texto">
<textarea name="input-texto" id="input-texto" class="seleccionar" cols="40" rows="12" placeholder="Ingrese el texto aquí"></textarea>
<p id="info"> ⓘ Sólo letras minúsculas y sin acentos</p>
<div class="botones-input">
<button class="boton-azul" id="boton-encriptar">Encriptar</button>
<button class="boton-gris" id="boton-desencriptar">Desencriptar</button>
</div>
</div>
<div class="sal-texto">
<span id="resultado" class="seleccionar"></span>
<div class="no-texto" id="no-texto">
<img class="imagen-buscar" src="img/buscar.png" alt="Imagen buscando texto">
<span class="titulo-buscar">Ningún mensaje fue encontrado</span>
<span class="subtitulo-buscar">Ingresa el texto que desees encriptar o desencriptar.</span>
</div>
<div class="botones-sal ">
<button onmouseout="outFunc()" class="boton-azul tooltip copiar-boton" id="copiar">Copiar
<span class="tooltiptext" id="myTooltip">Copiar</span>
</button>
</div>
</div>
</main>
<footer>
<!-- <a target="_blank" href="https://icons8.com/icon/8808/linkedin">LinkedIn</a> icon by <a target="_blank" href="https://icons8.com">Icons8</a> -->
<p class="contacto">Más proyectos y contacto: </p>
<div class="redes">
<p class="github">
<a href="https://github.com/UstehKenny">GitHub</a>
<img src="img/github.png" alt="Ícono de GitHub">
</p>
<p class="linkedin">
<a href="https://www.linkedin.com/in/carolina-kennedyv/">LinkedIn</a>
<img src="img/linkedin.png" alt="Ícono de LinkedIn">
</p>
</div>
</footer>
</body>
<script>
function outFunc() {
var tooltip = document.getElementById("myTooltip");
tooltip.innerHTML = "Copiar";
}
function verificarTexto(){
if (texto.value.match('[A-Z]') != null || texto.value.match('[áéíóú]')){
alert("⚠ Sólo se aceptan letras minúsculas y sin acentos ⚠");
window.location.reload();
}
if (texto.value == null || texto.value == '' || texto.value == ' '){
alert("⚠ Ingrese texto ⚠");
window.location.reload();
}
}
function encriptar(){
verificarTexto();
var nuevoTexto = '';
for (var i = 0; i < texto.value.length; i++) {
if (texto.value[i] == 'e'){
nuevoTexto = nuevoTexto + 'enter';
} else if (texto.value[i] == 'i'){
nuevoTexto = nuevoTexto + 'imes';
} else if (texto.value[i] == 'a'){
nuevoTexto = nuevoTexto + 'ai';
} else if (texto.value[i] == 'o'){
nuevoTexto = nuevoTexto + 'ober';
} else if (texto.value[i] == 'u'){
nuevoTexto = nuevoTexto + 'ufat';
} else {
nuevoTexto = nuevoTexto + texto.value[i];
}
}
desplegarResultado(nuevoTexto)
}
function desencriptar(){
verificarTexto();
nuevoTexto = texto.value;
var eiaou = ['enter','imes','ai','ober','ufat'];
if (nuevoTexto.includes(eiaou[0]) ||
nuevoTexto.includes(eiaou[1]) ||
nuevoTexto.includes(eiaou[2]) ||
nuevoTexto.includes(eiaou[3]) ||
nuevoTexto.includes(eiaou[4])){
nuevoTexto = nuevoTexto.replaceAll(eiaou[0],'e');
nuevoTexto = nuevoTexto.replaceAll(eiaou[1],'i');
nuevoTexto = nuevoTexto.replaceAll(eiaou[2],'a');
nuevoTexto = nuevoTexto.replaceAll(eiaou[3],'o');
nuevoTexto = nuevoTexto.replaceAll(eiaou[4],'u');
}
desplegarResultado(nuevoTexto);
}
function desplegarResultado(nuevoTexto){
let spanResultado = document.getElementById("resultado");
document.getElementById("no-texto").style.display = 'none';
spanResultado.innerHTML = nuevoTexto;
resultado.style.display = 'inline';
document.getElementById("copiar").style.display = 'inline';
}
function copiarTexto(){
var str = document.getElementById("resultado").innerText;
var el = document.createElement('textarea');
el.value = str;
document.body.appendChild(el);
el.select();
document.execCommand("copy");
document.body.removeChild(el);
var tooltip = document.getElementById("myTooltip");
tooltip.innerHTML = "Copiado ✔︎";
}
var texto = document.querySelector("textarea");
var buttonEnc = document.getElementById("boton-encriptar");
var buttonDes = document.getElementById("boton-desencriptar");
var buttonCopiar = document.getElementById("copiar");
buttonEnc.onclick = encriptar;
buttonDes.onclick = desencriptar;
buttonCopiar.onclick = copiarTexto;
</script>
</html>