質問編集履歴

1

jQueryのコードを追加

2021/02/15 01:38

投稿

syo--
syo--

スコア28

test CHANGED
File without changes
test CHANGED
@@ -147,3 +147,17 @@
147
147
  .site-title{font-size:30px; padding-top:30px; padding-bottom:30px;} }
148
148
 
149
149
  ```
150
+
151
+
152
+
153
+ ```jQuery
154
+
155
+ $(function(){$(".hamburger-button").click(function(){$(".header-menu-wrapper").fadeIn();});
156
+
157
+ $(".close-button").click(function(){$(".header-menu-wrapper").fadeOut();});
158
+
159
+ });
160
+
161
+
162
+
163
+ ```