Ricerca…


Parametri

Parametro Dettagli
Durata Quando viene passato, gli effetti di .hide() , .show() e .toggle() sono animati; l'elemento (s) gradualmente si dissolverà in o fuori.

Panoramica

$(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
});       

Attiva o disattiva le possibilità

Caso semplice di toggle()

function toggleBasic() {
  $(".target1").toggle();
}

Con durata specifica

function toggleDuration() {
  $(".target2").toggle("slow"); // A millisecond duration value is also acceptable
}

... e richiamata

function toggleCallback() {
  $(".target3").toggle("slow",function(){alert('now do something');});  
}

... o con easing e callback.

function toggleEasingAndCallback() {
  // You may use jQueryUI as the core only supports linear and swing easings
  $(".target4").toggle("slow","linear",function(){alert('now do something');});  
}

... o con una varietà di opzioni .

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');
      }
    }
  );  
}

È anche possibile usare una diapositiva come animazione con slideToggle()

function toggleSlide() {
  $(".target6").slideToggle(); // Animates from top to bottom, instead of top corner
}

... o dissolvenza in fadeToggle() / uscita cambiando l'opacità con fadeToggle()

function toggleFading() {
  $( ".target7" ).fadeToggle("slow")
}

... o toggleClass() una classe con toggleClass()

function toggleClass() {
  $(".target8").toggleClass('active');
}

Un caso comune è usare toggle() per mostrare un elemento nascondendo l'altro (stessa classe)

function toggleX() {
  $(".targetX").toggle("slow");  
}

Tutti gli esempi sopra possono essere trovati qui



Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow