jQuery UI:设置对话框的可拖动选项
我有一个可拖动的对话框,我想设置拖动选项,但我不知道该怎么做。
这里是一个示例。红色框的选项 cursorAt
设置为 { top: 0, left: 0 }
。我想对对话框的拖动进行同样的操作。
I have a draggable dialog and I would like to set dragging options, I don't know how to do it.
Here is an example. The red box has the option cursorAt
set with { top: 0, left: 0 }
. I would like to do the same with the dragging of the dialog.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要更改对话框小部件的可拖动选项,您可以像这样引用它:
您也可以对调整大小执行相同的操作。
To change the dialog widget's draggable options, you can reference it like this:
You can do the same with resizable as well.
只需将可拖动元素添加到对话框即可:
您可以在任何可拖动的元素上设置可拖动属性。
Just add the dragable to the dialog:
You can set the dragable properties on any element that you make dragable.