回答編集履歴

2

修正

2018/05/18 05:39

投稿

m.ts10806
m.ts10806

スコア80850

test CHANGED
@@ -4,9 +4,7 @@
4
4
 
5
5
 
6
6
 
7
- 追記:
8
-
9
- - [.animate()](http://api.jquery.com/animate/)
7
+ [.animate()](http://api.jquery.com/animate/)
10
8
 
11
9
  > queue (default: true)
12
10
 
@@ -14,4 +12,4 @@
14
12
 
15
13
  A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. As of jQuery 1.7, the queue option can also accept a string, in which case the animation is added to the queue represented by that string. When a custom queue name is used the animation does not automatically start; you must call .dequeue("queuename") to start it.
16
14
 
17
- エフェクトキューにアニメーションを配置するかどうかを示すブール値。 falseの場合、アニメーションはすぐに開始されます。 jQuery 1.7以降、queueオプションは文字列を受け入れることもできます。この場合、アニメーションはその文字列によって表されるキューに追加されます。カスタムキュー名を使用すると、アニメーションは自動的に開始されません。 .dequeue( "queuename")を呼び出して起動する必要があります。
15
+ エフェクトキューにアニメーションを配置するかどうかを示すブール値。 **falseの場合、アニメーションはすぐに開始されます。** jQuery 1.7以降、queueオプションは文字列を受け入れることもできます。この場合、アニメーションはその文字列によって表されるキューに追加されます。カスタムキュー名を使用すると、アニメーションは自動的に開始されません。 .dequeue( "queuename")を呼び出して起動する必要があります。

1

参考

2018/05/18 05:39

投稿

m.ts10806
m.ts10806

スコア80850

test CHANGED
@@ -1,3 +1,17 @@
1
1
  下記の記事が質問者さんとほぼそのままのことをやろうとしているので参考になるかもしれません
2
2
 
3
3
  - [jQueryの.animate()と.fadeIn()を同時に動かしたい時](https://qiita.com/sararilfy/items/6b77c8ff1d66e3260cf1)
4
+
5
+
6
+
7
+ 追記:
8
+
9
+ - [.animate()](http://api.jquery.com/animate/)
10
+
11
+ > queue (default: true)
12
+
13
+ Type: Boolean or String
14
+
15
+ A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. As of jQuery 1.7, the queue option can also accept a string, in which case the animation is added to the queue represented by that string. When a custom queue name is used the animation does not automatically start; you must call .dequeue("queuename") to start it.
16
+
17
+ エフェクトキューにアニメーションを配置するかどうかを示すブール値。 falseの場合、アニメーションはすぐに開始されます。 jQuery 1.7以降、queueオプションは文字列を受け入れることもできます。この場合、アニメーションはその文字列によって表されるキューに追加されます。カスタムキュー名を使用すると、アニメーションは自動的に開始されません。 .dequeue( "queuename")を呼び出して起動する必要があります。