gpt4 book ai didi

javascript - jscrollpane, jquery tools::tabs 问题

转载 作者:行者123 更新时间:2023-11-30 18:40:18 24 4
gpt4 key购买 nike

jScrollPane 在使用选项卡时有一个非常合理的问题。选项卡(jQuery UI 和 jQuery 工具)通常使用 display: none 来隐藏未聚焦的选项卡。这把 jScrollPane 弄乱了。解决方法是用 display: none; 来写类似 position: absolute; 的东西。左:-10000px;.

不幸的是,在 jQuery 工具中,我不知道如何自己做。没有用于我可以覆盖的隐藏选项卡的 CSS 类 jQuery 工具。

关于如何破解这个的任何想法?

最佳答案

看起来您可以覆盖默认效果。查看本页底部的 docs of jQuery Tools.您可以自己设置 css,而不是设置 display:none; 的默认 hide()

$.tools.tabs.addEffect("default", function(tabIndex, done) {

// hide all panes and show the one that is clicked
//this.getPanes().hide().eq(tabIndex).show();

this.getPanes().css({position: 'absolute', left: '-10000px'}).eq(tabIndex).css({{position: 'relative', left: '0'}});

// the supplied callback must be called after the effect has finished its job
done.call();
});

关于javascript - jscrollpane, jquery tools::tabs 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7046825/

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