前提・実現したいこと
参考サイトのようにハンバーガーメニューが開いたり閉じたりしたいのですが、(参考サイトと違う点は自分が設定しているのは右から開閉)メニュー自身は開閉しているのですが、リストの文字が出てきてくれません。
これを参考サイトのように出てくるようにしたいです。
検証ツールで見てみると、クリックした後はclikedクラスはついているのですが、画像のようにulやliは何故か上に行っています。
また、sassで書いているのですが、.clickedが別で書いてしまっているので、他に良い書き方などがあれば教えていただけると幸いです。
発生している問題・エラーメッセージ
無し
該当のソースコード
html
1<div class="header-sp-nav"> 2 <ul> 3 <li class="header-sp-feature"><a href="#threeFeature">特徴</a></li> 4 <li class="header-sp-price"><a href="#price">価格</a></li> 5 <li class="header-sp-contact"><a href="#contact">お問い合わせ</a></li> 6 </ul> 7 </div> 8 <div class="ham" id="ham"> 9 <span class="ham-line ham-line1"></span> 10 <span class="ham-line ham-line2"></span> 11 <span class="ham-line ham-line3"></span> 12 </div>
css
1.header-sp-nav { 2 display: none; 3 4 @include sspc { 5 display: block; 6 width: 300px; 7 height: 300px; 8 position: fixed; 9 right: -400px; 10 transition: all 0.3s; 11 background-color: aqua; 12 } 13 } 14 15 .clicked.header-sp-nav { 16 17 @include sspc { 18 right: 0px; 19 } 20 } 21 22 @include sspc { 23 .ham { 24 position: relative; 25 width: 50px; 26 height: 50px; 27 cursor: pointer; 28 29 .ham-line { 30 position: absolute; 31 right: 5px; 32 width: 100%; 33 height: 3px; 34 background-color: #333; 35 transition: all 0.3s; 36 } 37 38 .ham-line1 { 39 top: 5px; 40 } 41 42 43 .ham-line2 { 44 top: 22px; 45 width: 80%; 46 } 47 48 .ham-line3 { 49 top: 40px; 50 width: 60%; 51 } 52 } 53 } 54 55 @include sspc { 56 57 .clicked .ham-line1 { 58 transform: rotate(45deg); 59 top: 20px; 60 } 61 62 .clicked .ham-line2 { 63 width: 0; 64 transition: width 0s; 65 } 66 67 .clicked .ham-line3 { 68 transform: rotate(-45deg); 69 top: 20px; 70 width: 100%; 71 } 72 } 73
jquery
1$('#ham').on('click',function() { 2 $('#ham').toggleClass('clicked'); 3 $('.header-sp-nav').toggleClass('clicked'); 4 }); 5});
試したこと
重ね合わせ順の問題かと思い、下記のように追加しましたが変わりませんでした。
css
1.clicked.header-sp-nav { 2 3 .header-sp-feature { 4 z-index: 2; 5 } 6}
補足情報(FW/ツールのバージョンなど)
jQuery,sassで書いています。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。