如何在html网页中制作漂亮的滚动条

发布于 2025-01-07 19:38:31 字数 219 浏览 0 评论 0原文

我见过一些网页在 div 元素溢出时有一个非常漂亮的滚动条。这不是默认滚动条,看起来像 iPhone 中的滚动条。一个很好的例子是 twitter,当你点击某人查看时更多信息。我不确定我是否清楚地表达了这一点...

我的页面中要显示一个 div,它可能会溢出,当它溢出时,我想要一个漂亮的滚动条,而不是默认的滚动条。有人知道如何实现这一点吗?或者有我可以使用一些开源项目吗? 多谢!

I have seen some web pages have a very nice scroll bar when a div element overflows.It's not the default one and looks like scroll bars in iPhone.A good example is twitter's when you click on someone to see more information.I'm not sure I'm putting this clearly...

I have a div to display in my page and it's likely to overflow and when it does,I want a nice scroll bar with it,not the default one.Someone knows how to accomplish that?Or there's some open source project I can use?
Thanks a lot!

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

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

发布评论

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

评论(1

惜醉颜 2025-01-14 19:38:31

如今,有数百种可用于自定义滚动条的选项。它们通常很简单,只需将类分配给 div,然后在加载时调用插件函数:

<div class="myscrollingdiv" style="overflow:scroll; height:200px;"></div>

$(function(){
   $(".myscrollingdiv").jScrollPane();
});

http:// jscrollpane.kelvinluck.com/

There are 100s of options available for custom scroll bars these days. They're usually as simple as assigning a class to a div, and then calling the plugin function on load:

<div class="myscrollingdiv" style="overflow:scroll; height:200px;"></div>

$(function(){
   $(".myscrollingdiv").jScrollPane();
});

http://jscrollpane.kelvinluck.com/

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