queue( [queueName,] callback( next ) )

jQuery API の queue( [queueName,] callback( next ) ) は、指定した要素のキューに関数を追加するメソッド。

引数

[queueName,]

オプション。

追加先のキューを名前で指定できる。指定がない場合、デフォルトのエフェクトキューに追加する。

callback( next )

キューに追加する新しい関数。

実装例(サンプル)

実装例(サンプル)の動作について

  • 「action」ボタンをクリックすると、
    1. オレンジ色のブロックの幅と高さが200pxから50pxへアニメーション変化。
    2. オレンジ色のブロックの幅が50pxから200pxへアニメーション変化。
    3. ブロックの背景色がピンク色に変化。
    4. 高さが50pxから200pxへアニメーション変化。
    5. ブロックの背景色がオレンジ色に変化。
  • 「action」ボタンを何度かクリックすると、アニメーションがキューに蓄積される。

実装例(サンプル)のソースコード

JavaScript

<script type="text/javascript">
<!--
jQuery( function() {
    jQuery( '#jquery-api-animate-click' ) . click( function() {
        jQuery( '#jquery-api-animate' )
            . animate(
                {
                    width: 50,
                    height: 50,
                },
                {
                    duration: 1000,
                }
            )
            . animate(
                {
                    width: 200,
                },
                {
                    duration: 2000,
                }
            )
            . queue( function() {
                jQuery( this ) . css( { backgroundColor: 'pink' } ) . dequeue();
            } )
            . animate(
                {
                    height: 200,
                },
                {
                    duration: 2000,
                }
            )
            . 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>

HTML

<p><button id="jquery-api-animate-click">action</button></p>
<div id="jquery-api-animate"></div>

スポンサード リンク

カテゴリー: API, JavaScript, jQuery, Utilities, エフェクト, カスタム, データ タグ: パーマリンク