2009年11月18日

jQueryのアニメーションshow hide toggle

人気ブログランキングにほんブログ村 IT技術ブログへ

jQueryでアニメーションの付いた画像の表示非表示が出来る命令の紹介。

show()

セレクタで指定したブロック要素のdisplayをnoneからblockへ切り替える。()内はミリ秒またはslow,norma,fastを指定できる。
コールバック関数も指定できる。

hide()

showの逆でdisplayをblockからnoneへ切り替える命令。他はshow()と同じ。

toggle()

show()とhide()を交互に行う命令。他はshow()と同じ。

ASCII.jp:jQueryでAjaxを利用する基本チュートリアル|Web制作の現場で使えるjQuery UIデザイン入門を参考に、画像の表示・非表示を試してみました。

startボタンの例は、show()にコールバック関数を指定しています。

showボタンで画像を表示・hideボタンで非表示

toggleボタンで画像を表示・非表示

startボタンで4枚の画像を1枚ずつ非表示

コードは以下の通り。
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
$("#showhide button#show").click(function(){
$("#showhide img:not(:animated)").show(1000);
});
$("#showhide button#hide").click(function(){
$("#showhide img:not(:animated)").hide(1000);
});
$("#animetoggle button").click(function(){
$("#animetoggle img:not(:animated)").toggle(1000);
});
$("#animestart button").click(function(){
$('#animestart img[src="//img01.naganoblog.jp/usr/webdesign/k_04.png"]').hide(1000,function(){
$('#animestart img[src="//img01.naganoblog.jp/usr/webdesign/k_03.png"]').hide(1000,function(){
$('#animestart img[src="//img01.naganoblog.jp/usr/webdesign/k_02.png"]').hide(1000,function(){
$('#animestart img[src="//img01.naganoblog.jp/usr/webdesign/k_01.png"]').hide(1000);
});
});
});
});
})
</script>
<div id="showhide" style="width:360px;height:250px;">
<p>showボタンで画像を表示・hideボタンで非表示</p>
<button id="show">show</button><button id="hide">hide</button>
<img src="//img01.naganoblog.jp/usr/webdesign/k_01.png" style="width:180px;height:180px;display:block;" />
</div>
<div id="animetoggle" style="width:360px;height:250px;"><p>toggleボタンで画像を表示・非表示</p>
<button style="display:block">toggle</button>
<img src="//img01.naganoblog.jp/usr/webdesign/k_03.png" style="float:left;width:180px;height:180px;display:block;" />
</div>
<div id="animestart" style="width:360px;height:160px;">
<p>startボタンで4枚の画像を1枚ずつ非表示</p>
<button style="display:block">start</button>
<img src="//img01.naganoblog.jp/usr/webdesign/k_01.png" style="float:left;width:90px;height:90px;margin:0px;" />
<img src="//img01.naganoblog.jp/usr/webdesign/k_02.png" style="float:left;width:90px;height:90px;margin:0px;" />
<img src="//img01.naganoblog.jp/usr/webdesign/k_03.png" style="float:left;width:90px;height:90px;margin:0px;" />
<img src="//img01.naganoblog.jp/usr/webdesign/k_04.png" style="float:left;width:90px;height:90px;margin:0px;" />
</div>


同じカテゴリー(jQuery)の記事画像
jQueryでIE6を透過PNGに対応させる
jQueryで作るロールオーバー
jQueryで作るオリジナルツールチップ
jQueryでのアニメーション animate()
jQueryのアニメーションfadeIn Out To
jQueryのアニメーションslideUp Down 他
同じカテゴリー(jQuery)の記事
 jQueryでIE6を透過PNGに対応させる (2009-12-16 20:34)
 jQueryで作るロールオーバー (2009-12-12 18:00)
 jQueryで作るオリジナルツールチップ (2009-12-11 23:44)
 jQueryで作るタブパネル (2009-12-10 18:00)
 jQueryで作るアコーディオンパネル (2009-12-09 18:00)
 jQueryでイメージギャラリーを作成。 (2009-11-29 17:58)

Posted by ヒダカ at 18:33│Comments(0)jQuery
上の画像に書かれている文字を入力して下さい
 
<ご注意>
書き込まれた内容は公開され、ブログの持ち主だけが削除できます。