新 Google 文档 UI 中的滚动条如何设计(尤其是箭头按钮)?
新的 Google 文档 UI 具有炫酷的灰色滚动条。
这些似乎是使用 ::-webkit-scrollbar- 等选择器设计的常规滚动条拇指
。这很好而且方便。
但是,我无法显示箭头按钮(在屏幕截图上圈出)。检查器没有显示相应的 DOM 元素或任何特殊的 CSS。所以问题是,这些自定义滚动条是如何制作的,包括箭头按钮?
请查看这个小提琴。
编辑:
看来并不是所有的 css 规则都出现在检查器中。
特别是,您需要 ::-webkit-scrollbar-button:vertical:decrement
和 ::-webkit-scrollbar-button:vertical:increment
及其 <代码>水平等效项。
请参阅新小提琴(2012年4月27日更新)。
The new Google Docs UI features cool gray scrollbars.
These appear to be regular scrollbars styled with selectors like ::-webkit-scrollbar-thumb
. Which is nice and accessible.
However, I can't get arrow buttons to appear (circled on the screenshot). Inspector shows no corresponding DOM elements or any special CSS. So the question is, how these custom scrollbars are made, including the arrow buttons?
Please check out this fiddle.
Edit:
So it seems that just not all css rules appear in the Inspector.
In particular, you'd need ::-webkit-scrollbar-button:vertical:decrement
and ::-webkit-scrollbar-button:vertical:increment
, and their horizontal
equivalents.
Please see new fiddle (updated 27 Apr. 2012).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
希望这可以帮助您:
Hope this can help you:
看起来手柄的 css 标签没有显示在 Chrome 的开发工具中。您必须检查样本的来源才能了解到底发生了什么。
http://www.webkit.org/blog/363/styling-scrollbars/
It looks like the css tags for the handles don't show up in Chrome's dev tools. You have to examine the source of the sample to see what is really going on.
http://www.webkit.org/blog/363/styling-scrollbars/
试试这个:
Try this:
一个快速、简单、跨浏览器的解决方案是使用 jQuery 插件,例如 jScrollPane
A quick, easy, cross browser solution would be to use a jQuery plugin like jScrollPane