Bom dia,
Os botões não ativam o menu, já revisei todos os códigos mas não encontrei, segui tudo conforme explicado porém fiquei com dúvida, pois não achei a explicação muito clara no tópico "Projeto #2" por não deixar claro onde se colocar a tag "<script>"
nem o código em JS, então fiz por suposição, conforme segue abaixo:
1) Tag script no index.html entre a tag
:<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Notícias.com</title>
<link rel="stylesheet" href="css/estilo.css">
<link rel="stylesheet" href="css/exercicios.css">
<script src="js/menu.js"></script>
</head>
2) arquivo exercicios.css:
.secao {
float: left;
width: 33,333%;
}
.mini {
float: left;
width: 50%;
}
.container {
margin: 0 auto;
max-width: 1200px;
}
.logo,
.secao {
padding: 0 1%;
}
img {
max-width: 100%;
}
.logo,
.busca,
.barra-nav,
.menu-principal {
display: inline-block;
vertical-align: middle;
}
.menu-principal li {
float: left;
}
header {
padding: 0.5em 0;
}
.destaques {
margin-top: 1em;
}
.barra-nav {
margin: 0.4em 0;
}
@media (min-width: 600px) {
html {
font-size: 1.125em;
}
}
@media (min-width: 1000px) {
html {
font-size: 1.25em;
}
}
.secao {
width: 100%;
}
@media (min-width: 600px) {
.secao {
width: 50%;
}
}
@media (min-width: 1000px) {
.secao {
width: 33.333%;
}
}
@media (max-width: 600px) {
.barra-nav {
background: #f0f0f0;
padding: 1em;
margin: 0;
height: 100%;
width: 90%;
max-width: 320px;
position: fixed;
z-index: 1;
top: 0;
left: -90%;
transform: left 0.3s ease-out;
}
.menu-ativo .barra-nav {
left: 0;
}
.menu-principal li {
padding: 1em 0;
width: 100%;
}
}
@media not all and (max-width: 600px) {
.menu-abrir,
.menu-fechar {
display: none;
}
}
@media (max-width: 600px) {
.menu-ativo:after {
content: "";
display: block;
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: rgba(0,0,0,0.4);
}
}
3) arquivo menu.js:
document.querySelector('.menu-abrir').onclick = fuction() {
document.documentElement.classList.add('menu-ativo');
};
document.querySelector('.menu-fechar').onclick = fuction() {
document.documentElement.classList.remove('menu-ativo');
};
document.documentElement.onclick = funcition(event) {
if (event.target === document.documentElement) {
documente.documentElement.classList.remove('menu-ativo');
}
};
Grato.