script.aculo.us - Fold 折叠效果
说明
折叠效果类似于挤压效果,不同之处在于缩放是按顺序执行的,首先在垂直方向,然后水平方向,给人一种元素被折叠起来然后翻转的感觉。
语法
您可以使用以下两种形式之一来使用此效果 −
new Effect.Fold('id_of_element', [options]); 或 new Effect.Fold(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 FoldEffect(element){ new Effect.Fold(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 = "FoldEffect(this);"> <img src = "/images/scriptaculous.gif" alt = "script.aculo.us" /> <h2>Click me to Fold me out</h2> </div> </body> </html>
这将产生以下结果 −