ハンバーガーメニューを初めて作成中ですが、メニューボタンをクリックした時の「×」の動きが少し奇妙なのを直したいです。
できるだけ簡単な記述で教えていただけると助かります。
よろしくお願いいたします。
HTML
1<a class="menuButton" id="menuButton"> 2 <div></div> 3 <div></div> 4 <div></div> 5</a>
SCSS
1.menuButton{ 2 display: block; 3 height: 60px; 4 width: 60px; 5 background: #000; 6 position: fixed; 7 top: 0; 8 right: 0; 9 z-index: 10; 10 div{ 11 height: 3px; 12 width: 30px; 13 background: #fff; 14 position: absolute; 15 top: 50%; 16 left: 50%; 17 transform: translate(-50%, -50%); 18 transition: 0.3s; 19 border-radius: 10px; 20 &:nth-of-type(1){ 21 transform: translate(-50%, -12px); 22 } 23 &:nth-of-type(3){ 24 transform: translate(-50%, 10px); 25 } 26 } 27 } 28 .menuButton.active div:nth-of-type(1){ 29 transform: rotate(45deg) translate(-50%, 0); 30 transform-origin: 0% 50%; 31 } 32 .menuButton.active div:nth-of-type(2){ 33 opacity: 0; 34 } 35 .menuButton.active div:nth-of-type(3){ 36 transform: rotate(-45deg) translate(-50%, 0); 37 transform-origin: 0% 50%; 38 } 39 nav{ 40 opacity: 0; 41 visibility: hidden; 42 transform:translate(20px, -20px); 43 transition: 0.3s; 44 position: fixed; 45 top: 0; 46 right: 0; 47 background: #efefef; 48 width: 100%; 49 height: 100%; 50 overflow: auto; 51 margin-top: 60px; 52 .list{ 53 flex-direction: column; 54 li{ 55 height: 60px; 56 line-height: 60px; 57 border-top: 1px solid #d8d8d8; 58 &:active{ 59 background: #B8E5EA; 60 } 61 &:last-child{ 62 border-bottom: 1px solid #d8d8d8; 63 } 64 a{ 65 display: block; 66 color: #000; 67 padding-left: 30px; 68 &:hover{ 69 border-bottom: none; 70 } 71 } 72 } 73 } 74 }
JS
1$(function(){ 2 $("#menuButton").click(function(){ 3 this.classList.toggle("active"); 4 }); 5});
回答1件
あなたの回答
tips
プレビュー