jscroll 窗格,jquery 工具:: 选项卡问题
jScrollPane 在使用选项卡时有一个非常合理的问题。选项卡(jQuery UI 和 jQuery 工具)通常使用 display: none
来隐藏未聚焦的选项卡。这让 jScrollPane 变得混乱。修复方法是用 position:absolute; 代替
。display: none;
编写类似的内容。左:-10000px;
不幸的是,在 jQuery Tools 中我不知道如何自己做到这一点。没有用于我可以覆盖的隐藏选项卡的 CSS 类 jQuery 工具。
关于如何将其整合在一起有什么想法吗?
jScrollPane has a very reasonable problem when working with tabs. Tabs (both jQuery UI and jQuery Tools) usually use display: none
to hide unfocused tabs. This messes jScrollPane up. The fix is instead of display: none;
to write something like position: absolute; left: -10000px;
.
Unfortunately in jQuery Tools I don't see any idea how to do this myself. There's no CSS class jQuery Tools use for hidden tabs that I can override.
Any ideas on how to hack this together?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您可以覆盖默认效果。请查看jQuery 工具文档中的本页底部。默认的
hide()
设置display:none;
你可以自己设置 css。It looks like you can override the default effect. Check out the bottom of this page in the docs of jQuery Tools. Instead of the default
hide()
which setsdisplay:none;
you could set the css yourself.