script.aculo.us - BlindDown 效果


描述

此效果模拟百叶窗,受影响元素的内容保持不变。

语法

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

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

将产生以下结果 −

scriptaculous_effects.htm
广告