script.aculo.us - 移除效果


说明

关闭效果从顶部和底部向中心垂直调整目标元素的尺寸,然后从文档布局中将其删除。

添加了一些不透明度闪烁,以帮助模仿其现实世界的灵感。

语法

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

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

将产生以下结果 −

scriptaculous_effects.htm
广告