- 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 - 討論
拖拽和選項 onDrag
描述
拖拽進行中時會呼叫此回撥函式。
語法
new Draggable('element', {onDrag: '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', {
onDrag : function(){
new Effect.Opacity('myimage', {from:0, to:1.0, duration:1});
}
}
);
}
</script>
</head>
<body>
<p>While you drag this image it become disappear.</p>
<img id = "myimage" src = "/images/scriptaculous.gif"/>
</body>
</html>
將生成以下結果 −
scriptaculous_drag_drop.htm
廣告