
- 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
廣告