script.aculo.us - 爆炸效果


说明

爆炸效果是由不透明度和缩放效果组合而成,导致元素脱离文档流,然后从其中心开始放大,同时逐渐消失成透明状态。

最终的效果是该元素仿佛被一阵烟雾吹出页面。

语法

这可以采用以下两种形式来使用 -

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

将产生如下结果 -

scriptaculous_effects.htm
广告