像 Twitter 对话界面一样设计内部滚动条?
当您单击一条推文以及链接到该推文的对话时,可以在侧面板中看到滚动条推文足够长。
滚动条是如何创建和样式化的?
The scroll bar can be seen in the side-panel when you click on a tweet and the conversation linked to the tweet is long enough.
How is the scroll bar created and styled?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
他们使用
::-webkit-scrollbar
和相关的伪元素,这些伪元素仅在 WebKit 浏览器中工作(这很好,因为这只是为了美观)。查看此内容以获取更多信息:使用 CSS 的类似 Apple 的滚动条
我采用了 Twitter 使用的 CSS,请参阅:http://jsbin.com/ubasew
#doc
与 Twitter 一样,它在那里,因此只有#doc
内的滚动条是可见的定制。They're using
::-webkit-scrollbar
and the associated pseudo-elements, which only work in WebKit browsers (which is fine, because this is just aesthetics).Take a look at this for more information: Apple-like scrollbars using CSS
I've taken the CSS that Twitter is using, see: http://jsbin.com/ubasew
The
#doc
is as Twitter had it, and it's there so that only scrollbars inside#doc
are customised.我相信他们正在使用 jQuery 插件或自己创建的插件,无论哪种方式,它都类似于 jScrollPane
http:// /www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html
I believe they are using a jQuery plugin or one created by themselves, either way it's something similar to jScrollPane
http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html