jQuery
要素の可視性
サーチ…
パラメーター
パラメータ | 詳細 |
---|---|
期間 | 渡された場合、効果.hide() .show() と.toggle() アニメーション化されます。要素が次第にフェードインまたはフェードインします。 |
概要
$(element).hide() // sets display: none
$(element).show() // sets display to original value
$(element).toggle() // toggles between the two
$(element).is(':visible') // returns true or false
$('element:visible') // matches all elements that are visible
$('element:hidden') // matches all elements that are hidden
$('element').fadeIn(); // display the element
$('element').fadeOut(); // hide the element
$('element').fadeIn(1000); // display the element using timer
$('element').fadeOut(1000); // hide the element using timer
// display the element using timer and a callback function
$('element').fadeIn(1000, function(){
// code to execute
});
// hide the element using timer and a callback function
$('element').fadeOut(1000, function(){
// code to execute
});
可能性を切り替える
単純なtoggle()
ケース
function toggleBasic() {
$(".target1").toggle();
}
特定の期間
function toggleDuration() {
$(".target2").toggle("slow"); // A millisecond duration value is also acceptable
}
...とコールバック
function toggleCallback() {
$(".target3").toggle("slow",function(){alert('now do something');});
}
...またはイージングとコールバックで。
function toggleEasingAndCallback() {
// You may use jQueryUI as the core only supports linear and swing easings
$(".target4").toggle("slow","linear",function(){alert('now do something');});
}
...またはさまざまなオプションがあります 。
function toggleWithOptions() {
$(".target5").toggle(
{ // See all possible options in: api.jquery.com/toggle/#toggle-options
duration:1000, // milliseconds
easing:"linear",
done:function(){
alert('now do something');
}
}
);
}
slideToggle()
アニメーションとしてスライドを使用することもできます
function toggleSlide() {
$(".target6").slideToggle(); // Animates from top to bottom, instead of top corner
}
...またはfadeToggle()
不透明度を変更してフェードイン/アウトする
function toggleFading() {
$( ".target7" ).fadeToggle("slow")
}
...またはtoggleClass()
クラスを切り替える
function toggleClass() {
$(".target8").toggleClass('active');
}
一般的なケースは、ある要素を表示するためにtoggle()
を使用し、他の要素(同じクラス)を隠すことです。
function toggleX() {
$(".targetX").toggle("slow");
}
上記の例はすべてここにあります
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow