Thursday, 11 September 2014

Explode effect like boob explode a box

The Explode effect can be used with show/hide/toggle. This explodes or implodes the element into/from many pieces.

Syntax:

Here is the simple syntax to use this effect:
selector.hide|show|toggle( "explode", {arguments}, speed );

Parameters:

Here is the description of all the arguments:
  • pieces: Number of pieces to be exploded to/imploded from.
  • mode: The mode of the animation. Can be set to "show" or "hide".

Example:

Following is a simple example a simple showing the usage of this effect:
<html>
<head>
<title>the title</title>
   <script type="text/javascript" 
   src="/jquery/jquery-1.3.2.min.js"></script>
   <script type="text/javascript" 
   src="/jquery/jquery-ui-1.7.2.custom.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>
To understand it in better way you can Try it yourself.

No comments:

Post a Comment