回答編集履歴
1
modification of source code
test
CHANGED
@@ -6,13 +6,13 @@
|
|
6
6
|
|
7
7
|
jQuery($select_01).fadeOut(function() {
|
8
8
|
|
9
|
-
jQuery($select_01).html('English').fadeIn(
|
9
|
+
jQuery($select_01).html('English').fadeIn(1000);
|
10
10
|
|
11
11
|
});
|
12
12
|
|
13
13
|
jQuery($select_02).fadeOut(function() {
|
14
14
|
|
15
|
-
jQuery($select_02).html('日本語').fadeIn(
|
15
|
+
jQuery($select_02).html('日本語').fadeIn(1000);
|
16
16
|
|
17
17
|
});
|
18
18
|
|