前提・実現したいこと
ハンバーガーメニューのリンク部分をクリックしたらメニューが閉じるようにしたく思います。
こちら他サイトで紹介されているJSの記載方法で作業してみたのですが、
リンクをクリックしても閉じません。。
当方の方でも引き続き作業していますがどうしても直らずで、こちらに相談させてもらいました。
おそらくJSの書き方の問題かと思うのですが
どのような書き方に変えればいいでしょうか?
参考にCSS(長くてすみません)を載せています。
html
<header class="header"> <div id="logo"><a href="#"><img src="img/logo.png"></a></div> <nav class="global-nav"> <ul class="global-nav__list"> <li class="global-nav__item"><a href="#about">ABOUT</a></li> <li class="global-nav__item"><a href="#movies">MOVIES</a></li> <li class="global-nav__item"><a href="#commercials">COMMERCIALS</a></li> <li class="global-nav__item"><a href="#livebroadcast">LIVE BROADCAST</a></li> <li class="global-nav__item"><a href="#cameratruck">CAMERA TRUCK</a></li> <li class="global-nav__item"><a href="#contact">CONTACT</a></li> </ul> </nav> <div class="hamburger" id="js-hamburger"> <span class="hamburger__line hamburger__line--1"></span> <span class="hamburger__line hamburger__line--2"></span> <span class="hamburger__line hamburger__line--3"></span> </div> <div class="black-bg" id="js-black-bg"></div> </header>
css
.header { display: -webkit-box; display: -ms-flexbox; display: flex; position: fixed; width: 100%; height: 45px; border-bottom: 1px solid #2d2d2d; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-sizing: border-box; box-sizing: border-box; background: #2d2d2d; overflow: hidden; z-index: 10; } .header #logo img { height: 15px; margin: 30px 0 30px 20px; } .global-nav { position: fixed; right: -320px; /* これで隠れる */ top: 0; width: 300px; /* スマホに収まるくらい */ height: 100vh; padding-top: 40px; background-color: #2d2d2d rgba(255, 255, 255, 0.8); transition: all .6s; z-index: 200; overflow-y: auto; } .hamburger { position: absolute; right: 0; top: 0; width: 50px; height: 50px; cursor: pointer; z-index: 300; } .global-nav__list { margin: 50px 0 0 0; padding: 0; list-style: none; } .global-nav__item { text-align: left; font-size: 2.5em; font-family: Arial, Helvetica, "sans-serif"; padding: 0 0 0 30px; } .global-nav__item a { display: block; padding: 8px 0; text-decoration: none; color: #ffffff; transition: 0.5s; } .global-nav__item a:hover { background-color: #757575 rgba(255, 255, 255, 0.8); } .hamburger__line { position: absolute; left: 11px; width: 25px; height: 1px; background-color: #ffffff; transition: all .6s; } .hamburger__line--1 { top: 14px; } .hamburger__line--2 { top: 22px; } .hamburger__line--3 { top: 30px; } .black-bg { position: fixed; left: 0; top: 0; width: 100vw; height: 100vh; z-index: 100; background-color: #000; opacity: 0; visibility: hidden; transition: all .6s; cursor: pointer; } /* 表示された時用のCSS */ .nav-open .global-nav { right: 0; } .nav-open .black-bg { opacity: .8; visibility: visible; } .nav-open .hamburger__line--1 { transform: rotate(45deg); top: 20px; } .nav-open .hamburger__line--2 { width: 0; left: 50%; } .nav-open .hamburger__line--3 { transform: rotate(-45deg); top: 20px; }
js
<!--スマホハンバーガーjs--> <script> function toggleNav() { var body = document.body; var hamburger = document.getElementById('js-hamburger'); var blackBg = document.getElementById('js-black-bg'); hamburger.addEventListener('click', function() { body.classList.toggle('nav-open'); }); blackBg.addEventListener('click', function() { body.classList.remove('nav-open'); }); $('.global-nav a[href]').on('click',function() { $('.hamburger').removeClass('.nav-open'); } ); } toggleNav(); </script>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2022/01/28 07:57
2022/01/28 08:15