隐藏/设置滚动条样式的跨浏览器解决方案?
我正在使用 javascript/jquery/ajax 进行动态网站系统工作,所以我不知道内容 div
id 的实际布局大小设置滚动条的样式或至少隐藏它,但我找不到适用于每个浏览器的任何解决方案。
有人知道一个可能的解决方案,或者至少知道一个有效的插件吗? 我找到了几个插件可以做到这一点,但我想知道是否有人可以推荐其中一个。
如果它可能喜欢使用 JQuery-Ui 主题来设计我的滚动条,但我遇到的最大问题是我不知道内容容器的实际高度,所以我发现的所有插件都无法动态工作。
谢谢帮助
im working on a website system its dynamic with javascript/jquery/ajax so i dont know the actual layout size of the content div <div id="content"></div>
id like to style the scrollbar or at least hide it but i cant find any solution that works for every browser.
Does someone know a possible solution for that or at least a good plugin that works?
I found several plugins to do that, but id like to know if someone can recommend one of them.
If its possible id like to use the JQuery-Ui theme to style my scrollbar but the biggest problem i got is that i dont know the actual height of the content container so all the plugins i found cant work dynamic.
Thx for help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试添加css样式来隐藏滚动条:
overflow:hidden;
示例
这是您要找的吗?
另请查看: jquery-custom-scrollbar-plugins
You can try to add css style to hide scrollbar:
overflow:hidden;
Sample example
Is this what youre looking for?
Also take a look at: jquery-custom-scrollbar-plugins