回答編集履歴

2

chousei

2019/03/07 05:07

投稿

yambejp
yambejp

スコア114843

test CHANGED
@@ -9,3 +9,29 @@
9
9
  <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
10
10
 
11
11
  ```
12
+
13
+ # uiの有効性
14
+
15
+ ```javascript
16
+
17
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
18
+
19
+ <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
20
+
21
+ <script>
22
+
23
+ $(function(){
24
+
25
+ $('#d1').animate({'background-Color':'green'},1000);
26
+
27
+ $('#d2').hide().show("slide", {direction: "left"},1000);
28
+
29
+ });
30
+
31
+ </script>
32
+
33
+ <div id="d1" style="background-Color:red;width:100px;height:100px">hoge</div>
34
+
35
+ <div id="d2" style="background-Color:yellow;width:100px;height:100px">fuga</div>
36
+
37
+ ```

1

調整

2019/03/07 05:07

投稿

yambejp
yambejp

スコア114843

test CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  ```javascript
6
6
 
7
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
7
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
8
8
 
9
9
  <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
10
10