script.aculo.us - SlideDown 效果


说明

此效果模拟百叶窗,受影响元素的内容向下滚动。

语法

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

new Effect.SlideDown('id_of_element', [options]);
OR
new Effect.SlideDown(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 SDEffect(element){
            new Effect.SlideDown(element, {duration:3});
         }
      </script>
   </head>
   
   <body>
      <div id = "myimage" onclick = "SDEffect(this);">
         <img src = "/images/scriptaculous.gif" alt = "script.aculo.us" />
         <h2>Click me to Slide Down the Image</h2>
      </div>
   </body>
</html>

将产生以下结果 −

scriptaculous_effects.htm
广告