拖放使用 reverteffect 选项


说明

此选项用于定义当可拖动元素返回其起始位置时要使用效果。

默认为平滑滑动元素的原始位置。reverteffect 选项指定当 revert 选项设为 true 时,在 endeffect 函数之前调用的函数。

语法

new Draggable('element', {reverteffect: 'effectFunction'});

其中 effectFunction 是定义要应用的效果的函数。

示例

<html>
   <head>
      <title>Draggables Elements</title>
		
      <script type = "text/javascript" src = "/javascript/prototype.js"></script>
      <script type = "text/javascript" src = "/javascript/scriptaculous.js"></script>
		
      <script type = "text/javascript">
         window.onload = function() {
            var img = 'myimage';
            new Draggable('myimage' , {
            revert: true,
            reverteffect: function(){
               new Effect.MoveBy('myimage', 100,100);
               }
            });
         }
      </script>
   </head>

   <body>
      <p>Drag and leave this image to see the result.</p>
      <img id = "myimage" src = "/images/scriptaculous.gif"/>
   </body>
</html>

执行上述操作会得到以下结果 -

scriptaculous_drag_drop.htm
广告