div 内可调整大小的 div

发布于 2024-10-15 03:46:19 字数 175 浏览 5 评论 0原文

我需要 3 个 div,它们横跨屏幕(100%,但这不是重点),并且能够使用鼠标调整它们的宽度。我想要实现的功能是能够缩小一个 div 的宽度,从而使另一个 div 更宽。

我正在考虑使用 jQuery UI 可调整大小,但我找不到任何将其与多个 div 一起使用的示例。

有任何 ide 或示例链接吗?

I need 3 divs which would span across the screen (100%, but that's not the main point) and be able to adjust their widths using mouse. The functionality I am trying to achieve is to be able to shrink the width of one div resulting in making another div wider.

I am thinking of using jQuery UI Resizable, but I couldn't find any examples of using that with multiple divs.

Any ides or links to examples?

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

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

发布评论

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

评论(1

秋心╮凉 2024-10-22 03:46:19

您应该检查 jQuery 布局插件,完全按照您的需要进行操作,甚至更多。

你可以像这样做你需要的事情(未经测试但应该有效):

<html>
<head>
<script src="jquery.js"></script>
<script src="jquery.layout.js"></script>
<script>
    $(document).ready(function () {
        $('body').layout({ applyDefaultStyles: true });
    });
</script>
</head>
<body>
<div class="ui-layout-center">Center</div>
<div class="ui-layout-east">East</div>
<div class="ui-layout-west">West</div>
</body>
</html>

You should inspect the jQuery Layout plugin, doing exactly what you need and much more.

You could do what you need like this (not tested but should work) :

<html>
<head>
<script src="jquery.js"></script>
<script src="jquery.layout.js"></script>
<script>
    $(document).ready(function () {
        $('body').layout({ applyDefaultStyles: true });
    });
</script>
</head>
<body>
<div class="ui-layout-center">Center</div>
<div class="ui-layout-east">East</div>
<div class="ui-layout-west">West</div>
</body>
</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文