script.aculo.us - 表狀效果


描述

此效果模擬百葉窗,其中受影響元素的內容保持在適當的位置。

語法

你可以使用以下兩種形式之一來使用此效果 -

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

這將產生以下結果 -

scriptaculous_effects.htm
廣告