script.aculo.us - 淡出效果


说明

淡出效果结合了核心效果,让元素以动画方式从文档流中消失。

在此情况下,不透明度和移动核心效果结合使用,使元素看上去从页面上落向地面。

语法

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

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

这将生成以下结果 -

scriptaculous_effects.htm
广告
© . All rights reserved.