Efeito jQuery - Método Explode ()

Descrição

o Explodeefeito pode ser usado com mostrar / ocultar / alternar. Isso explode ou implode o elemento em / de muitas peças.

Sintaxe

Aqui está a sintaxe simples para usar este efeito -

selector.hide|show|toggle( "explode", {arguments}, speed );

Parâmetros

Aqui está a descrição de todos os argumentos -

  • pieces - Número de peças a serem explodidas / implodidas.

  • mode- O modo da animação. Pode ser definido como "mostrar" ou "ocultar".

Exemplo

A seguir está um exemplo simples que mostra o uso deste efeito -

<html>
   <head>
      <title>The jQuery Example</title>
      <script type = "text/javascript" 
         src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
      </script>
		
      <script type = "text/javascript" 
         src = "https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js">
      </script>
		
      <script type = "text/javascript" language = "javascript">
   
         $(document).ready(function() {

            $("#hide").click(function(){
               $(".target").hide( "explode", {pieces: 16 }, 2000 );
            });

            $("#show").click(function(){
               $(".target").show( "explode", {pieces: 16}, 2000 );
            });
				
         });
			
      </script>
		
      <style>
         p {background-color:#bca; width:200px; border:1px solid green;}
         div{width:100px; height:100px; background:red;}
      </style>
   </head>
	
   <body>
      <p>Click on any of the buttons</p>
		
      <button id = "hide"> Hide </button>
      <button id = "show"> Show</button> 
  
      <div class = "target">
      </div>
   </body>
</html>

Isso produzirá o seguinte resultado -

jquery-effects.htm