script.aculo.us - SwitchOff 效果
说明
SwitchOff 效果会从顶部和底部向中心线垂直调整目标元素的大小,然后将其从文档布局中移除。
添加一点不透明度闪烁以帮助模仿其真实世界的灵感。
语法
您可以使用以下两种形式之一来使用此效果 −
new Effect.SwitchOff('id_of_element', [options]); 或 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>
这将产生以下结果 −