JQuery Splitter:如何在页面加载时默认拆分左侧面板

发布于 2024-11-18 08:31:39 字数 98 浏览 2 评论 0原文

我正在使用 JQuery Splitter splitter.js,在加载页面时,我想默认将左侧面板关闭/拆分。加载页面时,我对显示左侧面板不感兴趣。如何在页面加载时默认拆分左面板。

I am using JQuery Splitter splitter.js, And on loading the page, I want to split the left panel closed / splitted by default. On loading a page I am not interested in showing left panel. How can I split left panel by default on page loading.

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

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

发布评论

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

评论(2

握住我的手 2024-11-25 08:31:39

来自文档

最初制作其中一个窗格
不可见,将其大小设置为0,例如
sizeLeft: 0 会将分割栏放在
分离器的左侧和
左窗格将不可见。

使用

sizeLeft: 0

from docs

To make one of the panes initially
invisible, set its size to 0, e.g.
sizeLeft: 0 will put the splitbar at
the left side of the splitter and the
left pane will not be visible.

use

sizeLeft: 0
梦明 2024-11-25 08:31:39

如果您使用这个分割器插件(这是我第一次在谷歌上搜索到),那么文档应该是有帮助:

设置分割栏的初始位置

默认情况下,分割器给出两个
窗格大小相等。您可以设置
初始位置可以是样式或
直接在分割器选项中。为了
例如,sizeTop: true 对于
水平分离器说使用
顶部窗格的高度(来自样式
工作表或内联样式)作为其
初始高度。而是传递一个数字
布尔值,例如 sizeLeft: 200 到
给出初始宽度/高度
窗格以像素为单位。为了使其中之一
窗格最初不可见,将其设置为
size 为 0,例如 sizeLeft: 0 将放置
左侧的分割栏
拆分器和左窗格将不会
可见。

同时指定一个窗格的大小
告诉拆分器保留该窗格
当分离器处于其当前尺寸
容器已调整大小;任何改变都会
被制作到另一个窗格。然而,
该窗格可能仍需要调整大小
遵守最小/最大高度限制
为其他窗格定义。

If you are using this splitter plugin (which was my first google hit), then the documentation should be helpful:

Setting the initial splitbar position

By default, the splitter gives the two
panes equal sizes. You can set the
initial position either in a style or
directly in the splitter options. For
example, sizeTop: true for a
horizontal splitter says to use the
height of the top pane (from the style
sheet or an inline style) as its
initial height. Pass a number instead
of a boolean, such as sizeLeft: 200 to
give the initial width/height of the
pane in pixels. To make one of the
panes initially invisible, set its
size to 0, e.g. sizeLeft: 0 will put
the splitbar at the left side of the
splitter and the left pane will not be
visible.

Specifying the size of one pane also
tells the splitter to hold that pane
at its current size when the splitter
container is resized; any change will
be made to the other pane. However,
that pane may still have to be resized
to honor min/max height constraints
defined for the other pane.

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