chiudi menu cliccando fuori

This commit is contained in:
boyska 2020-08-05 14:28:25 +02:00
parent f364358d21
commit 48505cb550
2 changed files with 59 additions and 35 deletions

View file

@ -1,3 +1,15 @@
function menu_get() {
return document.querySelector('#menu-row')
}
function menu_is_shown() {
return (window.getComputedStyle(menu_get()).display !== 'none')
}
function menu_hide() {
menu_get().style.display = 'none'
}
function menu_show() {
menu_get().style.display = 'block'
}
document.addEventListener('DOMContentLoaded', function() { document.addEventListener('DOMContentLoaded', function() {
var logo = document.getElementById('logo-img') var logo = document.getElementById('logo-img')
logo.classList.add('rotate') logo.classList.add('rotate')
@ -28,14 +40,26 @@ document.addEventListener('DOMContentLoaded', function() {
//ruotaLogo() //ruotaLogo()
scrollSetup() scrollSetup()
}, 1000) }, 1000)
logo.addEventListener('click', function () { logo.addEventListener('click', function (evt) {
var menu = document.querySelector('#menu-row') if (!menu_is_shown()) {
if (window.getComputedStyle(menu).display === 'none') { console.log('show')
menu.style.display = 'block' menu_show()
// menu.scrollIntoView() // menu.scrollIntoView()
} else { } else {
menu.style.display = 'none' menu_hide()
} }
console.log('cliccato') console.log('cliccato')
evt.stopPropagation()
})
document.querySelector('#menu-row').addEventListener('click', function(evt) {
evt.stopPropagation()
})
document.body.addEventListener('click', function (evt) {
if (!menu_is_shown()) {
return
}
menu_hide()
evt.stopPropagation()
}) })
}) })

View file

@ -89,7 +89,7 @@ h1 > (a, a:focus, a:active) { color: $c-titles; }
#menu-row { #menu-row {
display: none; display: none;
position: fixed; position: fixed;
top: 0px; top: 3em;
left: 8vw; left: 8vw;
background: $c-bg-menu; background: $c-bg-menu;
width: 89vw; width: 89vw;