首页 > 其他 > 详细

滚动条样式

时间:2015-10-10 10:29:02      阅读:245      评论:0      收藏:0      [点我收藏+]
/*半透明的滚动条*/
::-webkit-scrollbar/*整体部分*/
{
width: 13px;
height:13px;
border: 1px solid #6E6F71;
}

::-webkit-resizer{
background: transparent;
}

::-webkit-scrollbar-corner{
background: transparent;
}

::-webkit-scrollbar-track/*滑动轨道*/
{
background: transparent;
}
::-webkit-scrollbar-thumb:vertical/*滑块*/
{
border-width: 2px;
border-image: url(‘../images/scrollbar-border.png‘) 2 repeat;
background: url("../images/scrollbar-thumb-center-vertical.png") center no-repeat,-webkit-linear-gradient(top,#999 20%, #777 70%) center no-repeat;
}
::-webkit-scrollbar-thumb:horizontal/*滑块*/
{
border-width: 2px;
border-image: url(‘../images/scrollbar-border.png‘) 2 repeat;
background: url("../images/scrollbar-thumb-center-horizontal.png") center no-repeat,-webkit-linear-gradient(top,#999 20%, #777 70%) center no-repeat;
}

::-webkit-scrollbar-thumb:hover/*滑块效果*/
{
/*opacity: 0.5;*/
}

::-webkit-scrollbar-thumb:active/*滑块效果*/
{
/*opacity: 1;*/
}

 

滚动条样式

原文:http://www.cnblogs.com/as3lib/p/4865768.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!