jQuery API の show( duration, easing, callback ) は、指定した要素が非表示の場合、その要素を、duration に指定した速度で、easing に指定したイージング関数名のアニメーションで表示、その後、callback に指定した関数を実行するメソッド。
記述方法
jQuery( セレクター ) . show( 速度, イージング関数名, コールバック関数 );
「セレクター」の要素が非表示の場合、「セレクター」の要素を、「速度」に指定した速度の「イージング関数名」で指定したアニメーションで出現させ、その後、「コールバック関数」に指定した関数を実行。
「速度」は、ミリ秒単位の数字、もしくは、'slow'、'normal'、'fast' の文字列で指定できる。
「イージング関数名」は、'linear'、'swing' の文字列で指定できる。イージング関数は、加速度を加味したような動作パターン。jQuery にデフォルトで用意されているのは、linear と swing のシンプルな動作パターンだけだが、jQuery Easing Plugin などの jQuery プラグインを導入することで、使える動作パターンを増やすことができる。
実装例(サンプル)
show( 5000, 'swing' ) ボタンをクリックすると: イージング関数名は、swing
実装例(サンプル)の動作について
「 show( 5000, 'swing' ) 」ボタンをクリックすると、「show( 5000, 'swing' ) ボタンをクリックすると: 」の右側に、「イージング関数名は、」という青色のテキストを5秒間のアニメーションで表示させ、その右側に、「swing」という赤色のテキストを5秒間のアニメーションで表示する。
実装例(サンプル)のソースコード
JavaScript
<script>
<!--
jQuery( function() {
jQuery( '#jquery-api-show-swing' ) . click( function() {
jQuery( '#jquery-api-show-swing-contents' ). show(
5000,
'swing',
function() {
jQuery( '#jquery-api-show-swing-contents-2' ) . show( 5000, 'swing' );
}
);
} );
} );
// -->
</script>
<!--
jQuery( function() {
jQuery( '#jquery-api-show-swing' ) . click( function() {
jQuery( '#jquery-api-show-swing-contents' ). show(
5000,
'swing',
function() {
jQuery( '#jquery-api-show-swing-contents-2' ) . show( 5000, 'swing' );
}
);
} );
} );
// -->
</script>
CSS
<style>
<!--
#jquery-api-show-swing-contents {
display: none;
color: blue;
}
#jquery-api-show-swing-contents-2 {
display: none;
color: red;
}
-->
</style>
<!--
#jquery-api-show-swing-contents {
display: none;
color: blue;
}
#jquery-api-show-swing-contents-2 {
display: none;
color: red;
}
-->
</style>
HTML
<p><button id="jquery-api-show-swing">show( 5000, 'swing' )</button></p>
<p>show( 5000, 'swing' ) ボタンをクリックすると: <span id="jquery-api-show-swing-contents">イージング関数名は、</span><span id="jquery-api-show-swing-contents-2">swing</span></p>
<p>show( 5000, 'swing' ) ボタンをクリックすると: <span id="jquery-api-show-swing-contents">イージング関数名は、</span><span id="jquery-api-show-swing-contents-2">swing</span></p>