質問編集履歴
1
ハンバーがメニューの実装したscssの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -91,3 +91,97 @@
|
|
91
91
|
|
92
92
|
|
93
93
|
実装したいことはハンバーガーメニューからフロントエンド、バックエンドが表示されるようにしたいです。
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
scssはこのようにしてハンバーガーメニューを実装しています。
|
98
|
+
|
99
|
+
```ruby;/index.scss
|
100
|
+
|
101
|
+
@media screen and (max-width: 1199px) {
|
102
|
+
|
103
|
+
.hamburger {
|
104
|
+
|
105
|
+
display: block;
|
106
|
+
|
107
|
+
position: absolute;
|
108
|
+
|
109
|
+
right: 10px;
|
110
|
+
|
111
|
+
top: 30%;
|
112
|
+
|
113
|
+
width: 50px;
|
114
|
+
|
115
|
+
height: 26px;
|
116
|
+
|
117
|
+
cursor: pointer;
|
118
|
+
|
119
|
+
}
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
.Main__header__nav ul {
|
124
|
+
|
125
|
+
display: none; //ブラウザが縮小した時に消去
|
126
|
+
|
127
|
+
}
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
.nav-button {
|
132
|
+
|
133
|
+
display: inline-block;
|
134
|
+
|
135
|
+
position: relative;
|
136
|
+
|
137
|
+
width: 30px;
|
138
|
+
|
139
|
+
height: 26px;
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
span {
|
144
|
+
|
145
|
+
display: inline-block;
|
146
|
+
|
147
|
+
position: absolute;
|
148
|
+
|
149
|
+
left: 0;
|
150
|
+
|
151
|
+
width: 100%;
|
152
|
+
|
153
|
+
height: 4px;
|
154
|
+
|
155
|
+
background-color: #fff;
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
&:nth-of-type(1) {
|
160
|
+
|
161
|
+
top: 0;
|
162
|
+
|
163
|
+
}
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
&:nth-of-type(2) {
|
168
|
+
|
169
|
+
top: 11px;
|
170
|
+
|
171
|
+
}
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
&:nth-of-type(3) {
|
176
|
+
|
177
|
+
bottom: 0;
|
178
|
+
|
179
|
+
}
|
180
|
+
|
181
|
+
}
|
182
|
+
|
183
|
+
}
|
184
|
+
|
185
|
+
}
|
186
|
+
|
187
|
+
```
|