Jquery UI:可拖动并带有约束?
是否可以为可拖动对象设置约束? 我有这样一条线:
$("#info").draggable({ axis: 'y' });
我希望它只能向顶部拖动 200px。它不应该被拖到底部吗?有什么办法可以做到这一点吗?
is it possible to set constraints for a draggable obeject?
I have this line:
$("#info").draggable({ axis: 'y' });
i want this only to be draggable 200px towards the top. It should not be draggable towards the bottom? Is there any way to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你检查了演示吗?
http://jqueryui.com/demos/draggable/#constrain-movement
您可以使用一些显示的选项来实现您正在寻找的内容(例如制作一个高 200 px 的容器 div 等)。
Did you check the demos?
http://jqueryui.com/demos/draggable/#constrain-movement
You can use a few of the shown options to achieve what you are looking for (like making a container div that is 200 px higher, etc).