質問編集履歴

2

コード追加

2019/03/30 00:40

投稿

yu_6
yu_6

スコア22

test CHANGED
File without changes
test CHANGED
@@ -45,6 +45,10 @@
45
45
  <div class="box"></div>
46
46
 
47
47
  </div>
48
+
49
+
50
+
51
+ <button>ONE MORE</button>
48
52
 
49
53
  ```
50
54
 
@@ -140,6 +144,24 @@
140
144
 
141
145
  ```
142
146
 
147
+ ```jQuery
148
+
149
+ $(function() {
150
+
151
+ $("button").on('click', function() {
152
+
153
+ $(".box").addClass('inhale').on('animationend', function() {
154
+
155
+ $(this).removeClass('inhale');
156
+
157
+ });
158
+
159
+ });
160
+
161
+ });
162
+
163
+ ```
164
+
143
165
 
144
166
 
145
167
  よろしくお願いします。

1

タグ追加

2019/03/30 00:40

投稿

yu_6
yu_6

スコア22

test CHANGED
File without changes
test CHANGED
File without changes