emersondj / jogos

1 stars 0 forks source link

jogos do emerson #1

Open emersondj opened 1 year ago

emersondj commented 1 year ago

const fogos_artificios ="https://gifs.eco.br/wp-content/uploads/2022/02/gifs-animados-de-fogos-de-artificio-35.gif";

const cara_triste = "https://i.pinimg.com/564x/7d/53/66/7d5366af7998b8335bee042c6cd9d9ec.jpg";

const valores_para_soma = document.querySelector("#soma");

// duas variaveis com valores aleatorios let valor1 = parseInt(Math.random()10); let valor2 = parseInt(Math.random()10);

valores_para_soma.value = valor1 + "+" + valor2;

const valor_do_usuario= document.querySelector("#resposta");

const botao = document.querySelector("#bota_enviar")

const imagem = document.querySelector("#imagem");

botao.addEventListener('click', function (){

if (parseInt(valor_do_usuario.value) == valor1 + valor2){

    imagem.src=fogos_artificios;
}else{
    imagem.src=cara_triste;
}

})

emersondj commented 1 year ago

jogo adaptado