Skip to content

Commit

Permalink
arreglando funcion de borrar en la versión móvil
Browse files Browse the repository at this point in the history
  • Loading branch information
DBHRN committed Aug 25, 2022
1 parent 5ad7504 commit d953b46
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions gamemovil.html
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ <h1><img class="logo" src="imagenes/Logo.png" alt="Logo de GuessOrLose"></h1>
if (intentos == 0) {
brazoright();
escribirTexto(200 , 150, "Haz perdido"," #f8c1c1 ","35px Georgia");
escribirTexto(200 , 175, "la palabra era:", "#f8c1c1" ,"35px Georgia");
escribirTexto(200 , 200, palabracompleta, "#f8c1c1" ,"35px Georgia");
escribirTexto(200 , 195, "la palabra era:", "#f8c1c1" ,"35px Georgia");
escribirTexto(200 , 240, palabracompleta, "#f8c1c1" ,"35px Georgia");
document.getElementById("reinicio").style.display = '';
document.getElementById("agregar").style.display = '';

Expand All @@ -264,16 +264,16 @@ <h1><img class="logo" src="imagenes/Logo.png" alt="Logo de GuessOrLose"></h1>
}

function updatescreen(){
pincel.clearRect(0, 0, 400, 800);
pincel.clearRect(0, 0, 1200, 400);
points = 0;
intentos = 6;
x = 7.5;
respuestasmalas = [""];
respuestasbuenas = [""];
input.value = "";
input.focus();
//document.getElementById("reinicio").style.display = 'none';
//document.getElementById("agregar").style.display = 'none';
document.getElementById("reinicio").style.display = 'none';
document.getElementById("agregar").style.display = 'none';
wordchoice();
horca();
}
Expand Down

0 comments on commit d953b46

Please sign in to comment.