jQuery API の queue( [queueName,] newQueue ) は、指定した要素の現在のキューを、新しいキューに置き換えるメソッド。
引数
- [queueName,]
オプション。
置き換えるキューを名前で指定できる。指定がない場合、デフォルトのエフェクトキューを置き換える。
- newQueue
現在のキューの内容を置き換えるための関数の配列。
実装例(サンプル)
Queue Length:
実装例(サンプル)の動作について
- 「action」ボタンをクリックすると、
- オレンジ色のブロックの幅と高さが200pxから50pxへアニメーション変化。
- オレンジ色のブロックの幅が50pxから200pxへアニメーション変化。
- ブロックの背景色がピンク色に変化。
- 高さが50pxから200pxへアニメーション変化。
- ブロックの背景色がオレンジ色に変化。
- アニメーション中に、「キューを空にする」ボタンをクリックすると、キューを空にする。実行中のアニメーションが終わると停止する。「Queue Length: 」の右横の数字は、「0」になる。
- 「action」ボタンを何度かクリックすると、アニメーションがキューに蓄積されるので、「Queue Length: 」の右横の数字も増える。
実装例(サンプル)のソースコード
JavaScript
<script type="text/javascript">
<!--
jQuery( function() {
function queueLength(){
jQuery( '#jquery-api-queue-length' ) . text(
jQuery( '#jquery-api-animate' ) . queue() . length
);
};
jQuery( '#jquery-api-animate-click-2' ) . click( function() {
jQuery( '#jquery-api-animate' ) . queue( [] );
} );
jQuery( '#jquery-api-animate-click' ) . click( function() {
jQuery( '#jquery-api-animate' )
. animate(
{
width: 50,
height: 50,
},
{
duration: 1000,
complete: queueLength
}
)
. animate(
{
width: 200,
},
{
duration: 2000,
complete: queueLength
}
)
. queue( function() {
jQuery( this ) . css( { backgroundColor: 'pink' } ) . dequeue();
} )
. animate(
{
height: 200,
},
{
duration: 2000,
complete: queueLength
}
)
. queue( function() {
jQuery( this ) . css( { backgroundColor: 'orange' } ) . dequeue();
} );
} );
} );
// -->
</script>
<!--
jQuery( function() {
function queueLength(){
jQuery( '#jquery-api-queue-length' ) . text(
jQuery( '#jquery-api-animate' ) . queue() . length
);
};
jQuery( '#jquery-api-animate-click-2' ) . click( function() {
jQuery( '#jquery-api-animate' ) . queue( [] );
} );
jQuery( '#jquery-api-animate-click' ) . click( function() {
jQuery( '#jquery-api-animate' )
. animate(
{
width: 50,
height: 50,
},
{
duration: 1000,
complete: queueLength
}
)
. animate(
{
width: 200,
},
{
duration: 2000,
complete: queueLength
}
)
. queue( function() {
jQuery( this ) . css( { backgroundColor: 'pink' } ) . dequeue();
} )
. animate(
{
height: 200,
},
{
duration: 2000,
complete: queueLength
}
)
. queue( function() {
jQuery( this ) . css( { backgroundColor: 'orange' } ) . dequeue();
} );
} );
} );
// -->
</script>
CSS
<style type="text/css">
<!--
div#jquery-api-animate {
background-color: orange;
height: 200px;
width: 200px;
}
-->
</style>
<!--
div#jquery-api-animate {
background-color: orange;
height: 200px;
width: 200px;
}
-->
</style>
HTML
<p>
<button id="jquery-api-animate-click">action</button>
<button id="jquery-api-animate-click-2">キューを空にする</button>
</p>
<p>
Queue Length: <span id="jquery-api-queue-length"></span>
</p>
<div id="jquery-api-animate"></div>
<button id="jquery-api-animate-click">action</button>
<button id="jquery-api-animate-click-2">キューを空にする</button>
</p>
<p>
Queue Length: <span id="jquery-api-queue-length"></span>
</p>
<div id="jquery-api-animate"></div>