jscrollpane 不可见

发布于 2024-10-11 04:18:07 字数 260 浏览 2 评论 0 原文

我的页面上有很多 jquery 疯狂,我想知道这是否就是 jscrollpane 不显示的原因。

请参阅 http://jasondaydesign.com 并单击左侧的雕塑菜单项,然后单击屏幕上的剩余 div 。

如果没有 jscrollpane,文本是可滚动的。

但是,启用 jscrollpane 后,什么也没有显示。

想法?

I've got a lot of jquery madness going on with my page, and i'm wondering if that's the reason jscrollpane doesn't show.

See http://jasondaydesign.com and click on the sculpture menu item on the left and then on the remaining div on the screen.

Without jscrollpane, the text is scrollable.

However, with jscrollpane enabled, nothing shows.

thoughts?

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

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

发布评论

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

评论(1

依 靠 2024-10-18 04:18:07

您可以在显示包含 jScrollPane 的框后尝试重新初始化它。因此,将此行更改为:

$(this).find('.expandable').show('normal')

$(this).find('.expandable').show(
    'normal',
    function()
    {
        $('.scroll-pane').jScrollPane();
    }
);

一个答案

从 Firebug 的网络检查器中快速查看,它看起来像:

http://jasondaydesign.com/css/jquery.scrollpane.css

目前是 404。这可能导致问题?

You could try reinitialising jScrollPane after showing the box which contains it. So change this line:

$(this).find('.expandable').show('normal')

To:

$(this).find('.expandable').show(
    'normal',
    function()
    {
        $('.scroll-pane').jScrollPane();
    }
);

Previous answer

From a quick look in the network inspector of Firebug it looks like:

http://jasondaydesign.com/css/jquery.scrollpane.css

Is currently a 404. That might be causing the problem?

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