script.aculo.us - Shake Effect


Description

The Shake effect causes the target element to move back and forth horizontally three times, simulating the shake of a head.

This effect ignores any setting of the duration option.

Syntax

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

new Effect.Shake('id_of_element', [options]);
OR
new Effect.Shake(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 ShakeEffect(element){
            new Effect.Shake(element);
         }
      </script>
		
   </head>

   <body>
      <div id = "myimage" onclick = "ShakeEffect(this);">
         <img src = "/images/scriptaculous.gif" alt = "script.aculo.us" />
         <h2>Click me to Shake me out!</h2>
      </div>
   </body>
</html>

This will produce following result −

scriptaculous_effects.htm
Advertisements