script.aculo.us - 挤压效果

说明

挤压效果通过在垂直和水平方向上将目标元素的大小缩小到零,同时保持其左上角静止,从而以动画方式将目标元素从文档显示中删除。

最终的视觉效果是元素被挤压到其左上角,直到消失。

语法

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

new Effect.Squish('id_of_element', [options]);
或
new Effect.Squish(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 SquishEffect(element){
            new Effect.Squish(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 = "SquishEffect(this);">
         <img src = "/images/scriptaculous.gif" alt = "script.aculo.us" />
         <h2>Click me to Squish me out</h2>
      </div>
   </body>
</html>

这将产生以下结果 −

scriptaculous_effects.html