お世話になっております。よろしくお願いします。
表題の通りです。
ハンバーガーボタンをクリックするとドロワfーメニューが開いたり閉じたりしますが、
.wrapper をクリックした際にもドロワーメニューを閉じる動作を追加しました。
しかしハンバーガーボタンを連動させることができません。
addclass とか removeclassさせるためにクラス名を付与するべきでしょうか?
考え方がわかっておらず。。。
ご教示いただけますと助かります。
どうぞよろしくおねがいします。
html
1<header> 2<h1 id ="logo"></h1> 3<!--ハンバーガーボタン--> 4<label for="js-buttonHamburger" class="sidebarIconToggle"> 5<button type="button" id="js-buttonHamburger" class="c-button p-hamburger" aria-controls="setting" aria-expanded="false"> 6<span class="p-hamburger__line"> 7<span class="u-visuallyHidden"> 8メニューを開閉する 9</span> 10</span> 11</button></label> 12<!--ハンバーガーボタン終了--> 13<nav class="navi"> 14<ul id="setting"> 15<li class="setting_logo"></li> 16<li class="settiing_ver">なんらかの文章</li> 17<li class="setting_aboutus">なんらかの文章2番目</li> 18<li class="setting_from">なんらかの文章3番目</li> 19</ul> 20</nav> 21</header> 22<main class="wrapper"> 23</main>
css
1/*ハンバーガーボタン*/ 2 .c-button { 3 position: relative; 4 display: inline-block; 5 text-decoration: none; 6 -webkit-appearance: none; 7 -moz-appearance: none; 8 appearance: none; 9 border: none; 10 background-color: transparent; 11 cursor: pointer; 12 13} 14 15 16.p-hamburger { 17 position: fixed; 18 top: 10px; 19/* bottom: 0; 20 left: 0;*/ 21 right: 0%; 22width: 80px; 23 height: 80px; 24 background-color: transparent; 25 margin: 0 auto; 26z-index: 100; 27 -webkit-transition: all .3s ease-in-out; 28 transition: all .3s ease-in-out; 29} 30/*.p-hamburger:hover, 31.p-hamburger:focus { 32 box-shadow: 0 0 .5rem rgba(0, 0, 0, .5 ); 33}*/ 34.p-hamburger::after{ 35 display: block; 36 content: ""; 37 position: absolute; 38 top:80px; 39 40 left:18px; 41 42 transition: all .5s ease; 43 44} 45 46.p-hamburger[aria-expanded="true"]::after{ 47 display: block; 48 content: ""; 49 left:16px; 50 51 52} 53.p-hamburger__line { 54 position: absolute; 55 top: 0; 56 right: 0; 57 bottom: 0; 58 left: 0; 59 margin: auto; 60 width: 30px; 61 height: 3px; 62 63 background-color: #fff; 64 -webkit-transition: inherit; 65 transition: inherit; 66} 67 68.p-hamburger__line::before, 69.p-hamburger__line::after { 70 position: absolute; 71 display: block; 72 width: 100%; 73 height: 100%; 74 background-color: inherit; 75 content: ''; 76 -webkit-transition: inherit; 77 transition: inherit; 78} 79 80.p-hamburger__line::before { 81 top: -12px; 82} 83.p-hamburger__line::after { 84 top: 12px; 85} 86 87.p-hamburger[aria-expanded="true"] .p-hamburger__line { 88 background-color: transparent; 89 transform: rotateZ(180deg); 90 91} 92 93.p-hamburger[aria-expanded="true"] .p-hamburger__line::before, 94.p-hamburger[aria-expanded="true"] .p-hamburger__line::after { 95 top: 0; 96 background-color: #fff; 97 98 99} 100 101.p-hamburger[aria-expanded="true"] .p-hamburger__line::before { 102 -webkit-transform: rotate(35deg); 103 -ms-transform: rotate(35deg); 104 transform: rotate(35deg); 105 width: 120%; 106 height: 100%; 107 108 109} 110 111.p-hamburger[aria-expanded="true"] .p-hamburger__line::after { 112 -webkit-transform: rotate(-35deg); 113 -ms-transform: rotate(-35deg); 114 transform: rotate(-35deg); 115 width: 120%; 116 height: 100%; 117 118} 119.p-hamburger:focus{ 120 outline: none; 121} 122 123.u-visuallyHidden { 124 position: absolute; 125 white-space: nowrap; 126 width: 1px; 127 height: 1px; 128 overflow: hidden; 129 border: 0; 130 padding: 0; 131 clip: rect(0 0 0 0); 132 clip-path: inset(50%); 133 margin: -1px; 134} 135 136/*ハンバーガーボタン終了*/ 137 /*ナビゲーション*/ 138.navi { 139 max-height: 812px; 140 min-height: 812px; 141 height: 812px; 142 position: fixed; 143 right: 0; 144 top:0px; 145 width: 0%; 146 147 transform: translateX(100%); 148background-color: #BE004A; 149 z-index: 5; 150 transition: all 1s ease; 151 visibility: hidden; 152} 153.navi.open{ 154 max-height: 812px; 155 min-height: 812px; 156 height: 812px; 157 position: fixed; 158 right: 0; 159 width: 80%; 160 transform: translateX(0%); 161background-color: #BE004A; 162 background-repeat: no-repeat; 163 background-size: cover; 164 background-position: -150px -160px; 165 visibility: visible; 166 z-index: 5; 167 168 169 170} 171 #setting{ 172 margin-top:180px; 173 text-align: center; 174 font-family:"Lato", "sans-serif"; 175 color: #fff; 176 } 177 .setting_logo{ 178 background-image: url("../image/logo_large_white.svg"); 179 width:176px; 180 height: 150px; 181 background-repeat: no-repeat; 182 margin:0 auto; 183 184 } 185 .settiing_ver{ 186 margin-top:18px; 187 } 188 .setting_aboutus{ 189 margin-top:60px; 190 } 191 .setting_from{ 192 margin-top:198px; 193 font-size:1.2rem; 194 }
javascript
1 //ハンバーガーボタンの動作 2(function () { 3 $('#js-buttonHamburger').click(function () { 4 $('body').toggleClass('is-drawerActive'); 5 6 if ($(this).attr('aria-expanded') == 'false') { 7 $(this).attr('aria-expanded', true); 8 } else { 9 $(this).attr('aria-expanded', false); 10 } 11 }); 12}) (); 13 14//ドロワーメニューが開く 15$(function(){ 16 $('.sidebarIconToggle').click(function(){ 17 //要素のクラス名がnavibgからopenに切り替わる 18 $('.navi').toggleClass("open"); 19 }); 20 21}); 22//ハンバーガーボタン以外の場所をクリックしても閉じる 23 $(function(){ 24 $('.wrapper').click(function(){ 25 //要素のクラス名がnavibgからopenに切り替わる 26 $('.navi').toggleClass("open"); 27 28 29 }); 30 31});
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/26 03:17