gpt4 book ai didi

jquery - jScrollPane 调整大小

转载 作者:行者123 更新时间:2023-12-03 22:24:36 27 4
gpt4 key购买 nike

我有一个具有 100% 窗口宽度的 div,它是 jScrollPane div 的容器。

调整窗口大小时,滚动 Pane 不会移动。有没有办法让 jScrollPane 随窗口调整大小?

谢谢!

最佳答案

您可以使用 API 调用 reinitialise() 来执行此操作。此处的示例页面之一对此进行了介绍。 http://jscrollpane.kelvinluck.com/dynamic_height.html
http://jscrollpane.kelvinluck.com/dynamic_width.html

$(function()
{
$('.scroll-pane').each(
function()
{
$(this).jScrollPane(
{
showArrows: $(this).is('.arrow')
}
);
var api = $(this).data('jsp');
var throttleTimeout;
$(window).bind(
'resize',
function()
{
if ($.browser.msie) {
// IE fires multiple resize events while you are dragging the browser window which
// causes it to crash if you try to update the scrollpane on every one. So we need
// to throttle it to fire a maximum of once every 50 milliseconds...
if (!throttleTimeout) {
throttleTimeout = setTimeout(
function()
{
api.reinitialise();
throttleTimeout = null;
},
50
);
}
} else {
api.reinitialise();
}
}
);
}
)

});

关于jquery - jScrollPane 调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3537615/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com