-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
103 lines (92 loc) · 2.24 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
function mostra() {
resultado.style.color = "#495057";
if (cod != "") {
inicio.style.display = "none";
resultado.innerHTML = cod;
final.style.display = "inline-block";
cod = "";
} else {
inicio.style.display = "inline-block";
final.style.display = "none";
}
}
function alerta() {
var alerta = document.querySelector(".alerta");
mostra();
var vermelho = setInterval(function () {
alerta.style.color = "red";
}, 150);
var preto = setInterval(function () {
alerta.style.color = "black";
}, 300);
setTimeout(function () {
clearInterval(vermelho);
clearInterval(preto);
alerta.style.color = "#495057";
}, 1500);
}
function criptografa() {
msg = mensagem.value;
if (
msg ==
msg
.toLowerCase()
.normalize("NFD")
.replace(/[\u0300-\u036f]/g, "")
) {
for (i in msg) {
if (msg[i] == "a") {
cod = cod + "ai";
} else if (msg[i] == "e") {
cod = cod + "enter";
} else if (msg[i] == "i") {
cod = cod + "imes";
} else if (msg[i] == "o") {
cod = cod + "ober";
} else if (msg[i] == "u") {
cod = cod + "ufat";
} else {
cod = cod + msg[i];
}
}
mostra();
} else {
alerta();
}
}
function descriptografa() {
msg = mensagem.value;
if (
msg ==
msg
.toLowerCase()
.normalize("NFD")
.replace(/[\u0300-\u036f]/g, "")
) {
cod = msg.replace(/ai/g, "a");
cod = cod.replace(/enter/g, "e");
cod = cod.replace(/imes/g, "i");
cod = cod.replace(/ober/g, "o");
cod = cod.replace(/ufat/g, "u");
mostra();
} else {
alerta();
}
}
function copia() {
let texto = resultado.innerText;
navigator.clipboard.writeText(texto);
resultado.style.color = "#9ea1ca";
}
cod = "";
var mensagem = document.querySelector("textarea");
var resultado = document.querySelector(".resultado");
var cripto = document.querySelector(".cripto");
cripto.onclick = criptografa;
var descripto = document.querySelector(".descripto");
descripto.onclick = descriptografa;
var inicio = document.querySelector(".semMensagem");
var final = document.querySelector(".comMensagem");
final.style.display = "none";
var copiar = document.querySelector(".copiar");
copiar.onclick = copia;