回答編集履歴

1

追記

2019/07/29 10:27

投稿

退会済みユーザー
test CHANGED
@@ -1 +1,27 @@
1
1
  [https://developer.mozilla.org/ja/docs/Web/CSS/animation-iteration-count](https://developer.mozilla.org/ja/docs/Web/CSS/animation-iteration-count)
2
+
3
+
4
+
5
+ ```javascript
6
+
7
+ $('#split').click(function(){
8
+
9
+ $('.wrapper').removeClass('unity');
10
+
11
+ });
12
+
13
+ ```
14
+
15
+
16
+
17
+ ```javascript
18
+
19
+ $('#split').click(function(){
20
+
21
+ $('.wrapper').removeClass('unity');
22
+
23
+ $('.box').removeClass('flash');
24
+
25
+ });
26
+
27
+ ```