- 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 - 讨论
拖放与更改选项
描述
当拖动进行时,将调用此回调函数。这是拖动事件的首选回调。
语法
new Draggable('element', {change: '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', {
change : 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
广告