Jquery 可调整大小似乎改变了布局

发布于 2024-11-14 05:00:01 字数 251 浏览 4 评论 0原文

请参考J Fiddle:

http://jsfiddle.net/NwvPA/3/

两个栏,您只能左右调整它们的大小。但是,如果您调整顶部栏的大小,它会将另一个栏重新定位在其上方,它们应该保持在垂直水平!

在这里发布代码很困难,因为代码太多,所有相关的部分都被剥离并放在小提琴上。

任何帮助表示感谢,谢谢!

Please refer to the J Fiddle:

http://jsfiddle.net/NwvPA/3/

The two bars, you can resize them left and right only. However, if you resize the top one, it repositions the other bar ontop of it, they should stay at their vertical level!

It's hard to post code in here because there's quite a lot, all the relevant bits are stripped out and put on the fiddle.

Any help appreciated, thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

蓝戈者 2024-11-21 05:00:01

最后修复了它:

// Bar dragability
$(".jobArea .bar").parent().draggable(
    {
        axis: "x",
        grid: [GridSize, GridSize]
    }
);

我相信可调整大小会添加一个包装器 div,因此如果我们选择父级,它就不会出现错误。

Fixed it in the end:

// Bar dragability
$(".jobArea .bar").parent().draggable(
    {
        axis: "x",
        grid: [GridSize, GridSize]
    }
);

I beleive the resizable adds a wrapper div, so if we select the parent it works bug free.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文