This effect reduces the element to its top-left corner.
You can use one of the following two forms to use this effect −
new Effect.Shrink('id_of_element', [options]); OR new Effect.Shrink(element, [options]);
This effect does not have any other parameter except the common parameters.
<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 ShrinkEffect(element){ new Effect.Shrink(element, {duration:3}); } function ShowImage(element){ new Effect.Appear(element,{duration:1, from:1, to:1.0}); } </script> </head> <body> <div onclick = "ShowImage('myimage')"> Click me to display the image </div> <br /> <div id = "myimage" onclick = "ShrinkEffect(this);"> <img src = "/images/scriptaculous.gif" alt = "script.aculo.us" /> <h2>Click me to Shrink me out</h2> </div> </body> </html>
This will produce following result −