当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


script.aculo.us Move效果用法及代码示例


script.aculo.us库是一个跨浏览器库,旨在改善网站的用户界面。在本文中,我们将演示Move效果。此效果用于使元素平滑移动到给定参数。我们也可以调整效果的持续时间。

用法:

Effect.Move('object', [options] )

参数:该效果在下面描述的options对象中具有三个参数:

  • x:它是一个整数,代表新左值,取决于模式,绝对或相对。
  • y:它是一个整数,代表新的最大值,该最大值或绝对取决于模式。
  • mode:它是一个字符串,它指定元素是绝对移动还是相对于其自身位置移动。

为了演示此函数的使用,我们编写了一小段代码。在其中,我们编写了一个名为ShowEffect方法的小型JavaScript函数,该函数使用此库的Move方法。下面的示例演示了该方法。

范例1:



HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <script type="text/javascript" 
        src="prototype.js"> 
    </script> 
  
    <script type="text/javascript" 
        src="scriptaculous.js"> 
    </script> 
  
    <script type="text/javascript"> 
        function ShowEffect(element) { 
  
            // Using the Move effect to 
            // move the element to the 
            // given absolute position 
            new Effect.Move(element, { 
                x:0, 
                y:0, 
                mode:'absolute' 
            }); 
        } 
    </script> 
</head> 
  
<body> 
    <h1 style="color:green;"> 
        GeeksforGeeks 
    </h1> 
  
    <h2>script.aculo.us Move Effect</h2> 
      
    <button onclick="ShowEffect('hideshow')"> 
        Click me to Move the line! 
    </button> 
      
    <br><br> 
    <div id="hideshow" 
        style="position:absolute;"> 
        LINE TO MOVE 
    </div> 
</body> 
  
</html>

输出:

范例2:

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <script type="text/javascript" 
        src="prototype.js"> 
    </script> 
  
    <script type="text/javascript" 
        src="scriptaculous.js"> 
    </script> 
  
    <script type="text/javascript"> 
        function ShowEffect(element) { 
  
            // Using the Move effect to 
            // move the element to the 
            // given relative position 
            new Effect.Move(element, { 
                x:50, 
                y:-50, 
                mode:'relative' 
            }); 
        } 
    </script> 
</head> 
  
<body> 
    <h1 style="color:green;"> 
        GeeksforGeeks 
    </h1> 
  
    <h2>script.aculo.us Move Effect</h2> 
      
    <button onclick="ShowEffect('geeks_1')"> 
        Click me to show the effect 
    </button> 
      
    <br><br> 
    <div id="geeks_1" style= 
        "position:absolute; top:250px"> 
        GeeksforGeeks 
    </div> 
</body> 
  
</html>

输出:

相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 script.aculo.us Move Effect。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。