1
resposta

Minha resolução

HTML

<!DOCTYPE html>
<html lang="en" >
<head>
  <meta charset="UTF-8">
  <title>Manipulando o DOM - Aula 3</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>

  <button categoria="botao" data-func="mostra">Aluratintas em estoque:</button>

  <ul class="lista">
    <li cor="laranja" tipo="tinta-exterior" class="item">Tinta laranja</li>
    <li cor="vermelho" tipo="tinta-interior" class="item">Tinta vermelha</li>
    <li cor="branco" tipo="tinta-interior" class="item">Tinta branca</li>
    <li cor="amarelo" tipo="tinta-exterior" class="item">Tinta amarela</li>
    <li cor="rosa" tipo="tinta-exterior" class="item">Tinta rosa</li>
    <li cor="preto" tipo="tinta-exterior" class="item">Tinta preta</li>
  </ul>
  <button categoria="botao" data-func="esconde">Esconder estoque</button>

  <a href="https://alura.com.br/" target="_blank"><img src="https://www.alura.com.br/assets/img/home/alura-logo.svg" alt="" class="alura-logo"></a>
  <script src="Sandbox.js"></script>
</body>
</html>

JS

let lista=document.querySelectorAll("[tipo]")
console.log(lista)

lista.forEach(function(lista){
    lista.classList.add("invisivel")
    return lista
})

let botao= document.querySelectorAll("[categoria]")
console.log(botao)

botao.forEach(function(acao){
    acao.addEventListener("click",function(event){
       /* let lista=document.querySelectorAll("[tipo]") */
       let conteudo = event.target.dataset.func
       console.log(conteudo)
       mostraTintas(conteudo)
    })
})



function mostraTintas(funcbotao){
    let lista=document.querySelectorAll("[tipo]")
    if(funcbotao === "mostra"){
        lista.forEach(function(lista){
            lista.classList.remove("invisivel")
            return lista
        })
    }
    if(funcbotao === "esconde"){
        lista.forEach(function(lista){
            console.log("este botão funciona")
            lista.classList.add("invisivel")
            return lista
        })
    }

}

CSS

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto Mono", monospace;
  min-height: 400px;
  min-width: 450px;
  background-size: 80vh;
  color: rgb(0, 0, 0);
  background-image: url("https://www.uniabeu.edu.br/wp-content/uploads/2020/03/fundo-lilas.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  flex-direction: column;
}

button {
  font-size: 24px;
  font-family: "Futura Lt BT", sans-serif;
  background-color: black;
  background-repeat: no-repeat;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  padding: 8px 20px 8px 20px;
  color: white;
  box-shadow: 0px 0px 5px gray;
  border-radius: 5px 5px 0 0;
  border: none;
  transition: 500ms;
  opacity: 0.8;
  margin: 30px 0;
}

button:hover {
  color: white;
  background-color: gray;
}

button:active {
  color: black;
  background-color: white;
}

.lista {
  padding: 20px;
  list-style-type: none;
  border: 4mm ridge rgba(234, 122, 11, 0.992);
}

.alura-logo {
  width: 150px;
  position: absolute;
  top: 2%;
  right: 2%;
}

[cor="laranja"] {
  color: orange;
}

[cor="vermelho"] {
  color: red;
}

[cor="branco"] {
  color: white;
}

[cor="amarelo"] {
  color: yellow;
}

[cor="rosa"] {
  color: pink;
}

[cor="preto"] {
  color: black;
}

.invisivel{
  opacity:0
}
1 resposta

Oi Pedro, tudo bem?

Muito obrigada por compartilhar com a gente a sua solução. Ficou super incrível :D

Parabéns por praticar com as atividades sugeridas nos cursos.

Um abraço e bons estudos.