1
resposta

[Projeto] minha resolução

const listaDeTintas = document.querySelector(".lista"); const botaoLimpaLista = document.getElementById('botao-limpa'); const botaoInsereLista = document.getElementById('botao-insere');

function fazAparecer() { listaDeTintas.style.display = "block"; botaoInsereLista.style.display = "none" botaoLimpaLista.style.display = "block"

}

function fazDesaparecer() { listaDeTintas.style.display = "none"; botaoLimpaLista.style.display = "none" botaoInsereLista.style.display = "block" }

botaoLimpaLista.addEventListener("click", () => { fazDesaparecer(); })

botaoInsereLista.addEventListener("click", () => { fazAparecer(); })

1 resposta

Olá Cecília, tudo bem ?

Excelente!

Em caso de dúvidas ou dificuldades, estamos por aqui!

Abraços e bons estudos! :)