script.aculo.us - 震动效果


描述

震动效果会使目标元素水平来回移动三次,模拟头部晃动。

此效果会忽略 duration 选项的任何设定。

语法

可以使用以下两种形式之一来使用此效果 -

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

特定于效果的参数

此效果没有任何其他参数,除了 通用参数

示例

<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>

将生成以下结果 -

scriptaculous_effects.htm
广告