jsを使わずCSSだけでteratailのベルアイコンを作ろうとしてます。
ここ
から近いサンプルを落としてましたが、改良できずにいます。
teratailのように、ベルアイコンの幅を狭く、クリックされた時のメニューだけ広くしたいのですが、下のようにベルアイコンも幅広になってしまいます。
イメージ的には、正方形の真ん中にベルアイコンを配置したいです。
どう調整すれば良いでしょうか?
分かる方教えて下さい。宜しくお願いします。
scss
1$menuAppearDuration : .3s; 2$bumpUpDelay : $menuAppearDuration - 0.1s; 3 4@keyframes bumpUp{ 5 20%{ transform:translateY(-4px); } 6 100%{ transform:none; } 7} 8 9.toggle-menu{ list-style:none; padding:0; margin:3em auto; width:600px; color:#242C35; 10 > li{ display:block; // margin:1em 0 0; 11 > input{ display:none; 12 13 &:checked{ 14 ~ label{ box-shadow:0 0 8px rgba(0,0,0,.5); animation:none; transition:.1s; 15 > .toggle-menu-icon{ 16 &::before{ opacity:0; transform:rotate(45deg); text-shadow:0 0 3px #333; } 17 &::after{ transform:none; transform:rotate(180deg); } 18 } 19 } 20 21 ~ .options{ 22 > ul{ margin-bottom:2em; 23 > li{ margin:0; opacity:1; } 24 } 25 } 26 } 27 } 28 29 > label{ 30 display:block; 31 padding:1em 1em 1em 3em; 32 background:#FFF; 33 position:relative; 34 z-index:1; 35 border-radius:3px; 36 font-weight:600; 37 cursor:pointer; 38 box-shadow:0 0 0 #FFF; 39 transition:.1s; 40 // animation:.22s $bumpUpDelay 1 bumpUp ease-out; 41 42 &:hover{ 43 background:rgba(white, .8); 44 } 45 46 $toggleSize : 1.2em; 47 48 > .toggle-menu-icon { 49 position:absolute; 50 width: $toggleSize; 51 height:$toggleSize; 52 left:.8em; top:0; bottom:0; 53 margin:auto; 54 &::before, &::after{ 55 content:''; 56 position:absolute; 57 background:#AAA; 58 transition:.3s cubic-bezier(.45,.01,.27,1.4); 59 } 60 &::before{ width:2px; height:100%; left:calc(50% - 2px); margin-left:1px; } 61 &::after{ width:100%; height:2px; top:calc(50% - 1px); } 62 } 63 } 64 65 > .options{ position:relative; overflow:hidden; 66 > ul{ 67 font-size:.9em; 68 list-style:none; 69 margin:-1em .6em 1em; 70 padding:0; 71 border-radius:0 0 4px 4px; 72 border:5px solid rgba(255,255,255,.15); 73 transition:$menuAppearDuration cubic-bezier(.45,.01,.27, 2); 74 perspective:600px; 75 76 > li{ 77 padding:.5em 1em; 78 margin-top:-5em; 79 border-bottom:1px solid #E1E1E1; 80 position:relative; 81 cursor:pointer; 82 background:#F6F6F6; 83 color:#666; 84 transition:$menuAppearDuration ease; 85 transition-property:margin, opacity; 86 87 @for $i from 2 to 12{ 88 // &:nth-child(#{$i}){ transition-delay:$menuAppearDuration/2 * $i; z-index:12 - $i; } 89 } 90 91 &:first-child{ padding-top:1.2em; } 92 &:last-child{ border:0; border-radius:0 0 3px 3px; } 93 &:hover{ 94 background:lightyellow; 95 box-shadow:5px 0 rgba(lightyellow,.1), -5px 0 rgba(lightyellow,.1); } 96 } 97 } 98 } 99 } 100}
html
1<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"> 2 3<ul class="toggle-menu"> 4 <li> 5 <input type="checkbox" id="item1" /> 6 <label for="item1"> 7 <i class="fas fa-bell "></i> 8 </label> 9 <div class="options"> 10 <ul> 11 <li>「いいね」されました</li> 12 <li>フォローされました</li> 13 <li>システムからお知らせが届きました</li> 14 </ul> 15 </div> 16 </li> 17</ul>
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。