
- script.aculo.us 教程
- script.aculo.us - 首頁
- script.aculo.us - 概述
- script.aculo.us - 模組
- script.aculo.us - 可視效果
- script.aculo.us - 拖放
- script.aculo.us - 排序元素
- script.aculo.us - 建立滑塊
- script.aculo.us - 自動完成
- script.aculo.us - 原地編輯
- script.aculo.us 資源
- script.aculo.us - 快速指南
- script.aculo.us - 資源
- script.aculo.us - 討論
拖放帶有 endeffect 選項
說明
此選項用於定義當可拖動停止拖動時的效果。
預設情況下,它將元素的不透明度在 0.2 秒內更改為 1.0。
語法
new Draggable('element', {endeffect: '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() { new Draggable( 'myimage', { starteffect:null, endeffect: function(element){ new Effect.Opacity(element, {from:0, to:1.0, duration:10} ) } } ); } </script> </head> <body> <p>Drag the image and leave it to see the result:;</p> <img id = "myimage" src = "/images/scriptaculous.gif"/> </body> </html>
將產生以下結果 -
scriptaculous_drag_drop.htm
廣告