Skip to content

Commit

Permalink
se realiza ajuste en js a la funcion para aumentar el tamaño del texy…
Browse files Browse the repository at this point in the history
…area al momento de clikear
  • Loading branch information
YSUN1995 committed Jan 3, 2023
1 parent 06dcf18 commit da2d054
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 1 addition & 3 deletions Encriptador.css
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,7 @@ main {
left: 1px;
top: 660px;

background: #FFFFFF;
box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.08);
border-radius: 32px;
background: none;
}

#anuncios{
Expand Down
3 changes: 3 additions & 0 deletions Encriptador.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ function encriptar() {

document.getElementById("muñeco").style.display = "none";
document.getElementById("subt").style.display = "none";
document.getElementById("anuncios").style.top = "15px";
document.getElementById("resultado").innerHTML = txtcifrado;
document.getElementById("resultado").style.height = "450px";
document.getElementById("copiar").style.display = "show";
document.getElementById("copiar").style.display = "inherit";
document.getElementById("copiar").style.top = "500px";
}


Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<img id="muñeco" src="Imagenes/muneco.png" alt="muñeco"/>
<div id="anuncios">
<h2 id="subt" class="Subt">Ningún mensaje fue encontrado</h2>
<textarea id="resultado" class="info" rows="8" cols="70" placeholder="Ingresa el texto que desees encriptar o desencriptar."></textarea>
<textarea id="resultado" class="info" placeholder="Ingresa el texto que desees encriptar o desencriptar."></textarea>
<button id="copiar" class="copiar" onclick="copiar()">Copiar</button>
</div>
</section>
Expand Down

0 comments on commit da2d054

Please sign in to comment.