在 JQuery UI 中动态地将 div 放置在可调整大小的元素的左上角
我正在为 JQuery UI 的 Draggable 界面创建自定义样式,您可以在此处看到:
http://psdesignzone .com/help/Designer.html
我在使 NW-Resize 部分正常工作时遇到问题,如果您查看框的左上角(例如 North West 可调整大小类),您会发现它是相对于开始位置和看起来不错,但是当你调整盒子的大小时,它就变得一团糟。
我想不出一种方法让它始终位于正确的位置(因为这是动态生成的,我也无法更改实际的 HTML。
I'm creating a custom style for the Draggable interface of the JQuery UI you can see here:
http://psdesignzone.com/help/Designer.html
I'm having trouble getting the NW-Resize section working right, if you look at the top left of the box (e.g. the North West Resizable class) you'll see that it's positioned relatively at the start and looks good, but when you resize the box it get's all messed up.
I can't think of a way to get it to always positioned in the right place (because this is dynamically generated I can't change the actual HTML either.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该可以解决问题。在
.ui-ressized-nw
上将position:relative
更改为position:absolute
并将top:-166px
更改为顶部:-10px
。实例:http://jsfiddle.net/tw16/DNnSm/
This should do the trick. On
.ui-resizable-nw
changeposition:relative
toposition:absolute
and changetop:-166px
totop:-10px
.Live example: http://jsfiddle.net/tw16/DNnSm/