- 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 - 探讨
带约束选项的拖放
描述
此选项用于限制可拖动的方向,无论是水平 还是垂直 。默认为 null,表示自由移动。
语法
以下是使用constraint 选项的简单语法。
new Draggable('element', {constraint:null, "horizontal" or "vertical"});
示例
<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', {constraint:"horizontal"}); } </script> </head> <body> <p>Try to drag the following image and see the result and later change constraint to vertical and then repeat the exercise</p> <img id = "myimage" src = "/images/scriptaculous.gif"/> </body> </html>
它将产生以下结果 −
scriptaculous_drag_drop.htm
广告