script.aculo.us - Grow Effect


Description

This effect gives the illusion of zooming out an object. Item starts growing from a small point forming the complete item.

Syntax

You can use one of the following two forms to use this effect −

new Effect.Grow('id_of_element', [options]);
OR
new Effect.Grow(element, [options]);

Effect-Specific Parameters

This effect does not have any other parameter except the common parameters.

Example

<html>
   <head>
      <title>script.aculo.us examples</title>

      <script type = "text/javascript" src = "/javascript/prototype.js"></script>
      <script type = "text/javascript" src = "/javascript/scriptaculous.js?load = effects"></script>
		
      <script type = "text/javascript">
         function GrowEffect(element){
            new Effect.Grow(element, {duration:3});
         }
      </script>
		
   </head>

   <body>
      <div id = "myimage" onclick = "GrowEffect(this);">
         <img src = "/images/scriptaculous.gif" alt = "script.aculo.us" />
         <h2>Click me to see  Grow Effect</h2>
      </div>
   </body>
</html>

This will produce following result −

scriptaculous_effects.htm
Advertisements