-
Notifications
You must be signed in to change notification settings - Fork 0
/
codigo.js
47 lines (31 loc) · 1.44 KB
/
codigo.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
function codificar(){
var frase = document.getElementById("textoCodificado").value.toLowerCase();
var textoCodificado = frase.replace(/e/img, "enter");
var textoCodificado = textoCodificado.replace(/i/img, "imes");
var textoCodificado = textoCodificado.replace(/a/img, "ai");
var textoCodificado = textoCodificado.replace(/o/img, "ober");
var textoCodificado = textoCodificado.replace(/u/img, "ufat");
document.getElementById("textoDecodificado").innerHTML=textoCodificado;
}
function decodificar(){
var frase = document.getElementById("textoCodificado").value.toLowerCase();
var textoCodificado = frase.replace(/enter/img, "e");
var textoCodificado = textoCodificado.replace(/imes/img, "i");
var textoCodificado = textoCodificado.replace(/ai/img, "a");
var textoCodificado = textoCodificado.replace(/ober/img, "o");
var textoCodificado = textoCodificado.replace(/ufat/img, "u");
document.getElementById("textoDecodificado").innerHTML=textoCodificado;
document.getElementById("textoCodificado").value = "";
}
function copiar(){
var textoCodificado = document.querySelector("#textoDecodificado");
textoCodificado.select();
document.execCommand("copy");
document.getElementById("textoCodificado").value = "";
}
function colar(){
var textoCopiado = navigator.clipboard.readText().then(
clipText => document.getElementById("textoCodificado").value = clipText
);
decodificar();
}