jQuery
Visibilité de l'élément
Recherche…
Paramètres
Paramètre | Détails |
---|---|
Durée | Une fois passé, les effets de .hide() , .show() et .toggle() sont animés; les éléments vont progressivement disparaître. |
Vue d'ensemble
$(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
});
Possibilité de basculer
Cas de toggle()
simple toggle()
function toggleBasic() {
$(".target1").toggle();
}
Avec durée spécifique
function toggleDuration() {
$(".target2").toggle("slow"); // A millisecond duration value is also acceptable
}
... et rappel
function toggleCallback() {
$(".target3").toggle("slow",function(){alert('now do something');});
}
... ou avec assouplissement et rappel.
function toggleEasingAndCallback() {
// You may use jQueryUI as the core only supports linear and swing easings
$(".target4").toggle("slow","linear",function(){alert('now do something');});
}
... ou avec une variété d' options .
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');
}
}
);
}
Il est également possible d'utiliser une diapositive comme animation avec slideToggle()
function toggleSlide() {
$(".target6").slideToggle(); // Animates from top to bottom, instead of top corner
}
... ou fondu en changeant d'opacité avec fadeToggle()
function toggleFading() {
$( ".target7" ).fadeToggle("slow")
}
... ou basculer une classe avec toggleClass()
function toggleClass() {
$(".target8").toggleClass('active');
}
Un cas courant est d'utiliser toggle()
pour afficher un élément en cachant l'autre (même classe)
function toggleX() {
$(".targetX").toggle("slow");
}
Tous les exemples ci-dessus peuvent être trouvés ici
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow