在 JQuery UI 中动态地将 div 放置在可调整大小的元素的左上角

发布于 2024-12-03 04:54:33 字数 341 浏览 0 评论 0原文

我正在为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心不设防 2024-12-10 04:54:33

这应该可以解决问题。在 .ui-ressized-nw 上将 position:relative 更改为 position:absolute 并将 top:-166px 更改为顶部:-10px

实例:http://jsfiddle.net/tw16/DNnSm/

.ui-resizable-nw {
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid #666;
    border-width: 1px 0 0 1px;
    position: absolute; /* changed from relative */
    top: -10px; /* changed from -166px */
    left: -10px;
    cursor: nw-resize;
}

This should do the trick. On .ui-resizable-nw change position:relative to position:absolute and change top:-166px to top:-10px.

Live example: http://jsfiddle.net/tw16/DNnSm/

.ui-resizable-nw {
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid #666;
    border-width: 1px 0 0 1px;
    position: absolute; /* changed from relative */
    top: -10px; /* changed from -166px */
    left: -10px;
    cursor: nw-resize;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文