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.
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]);
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 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 −