码迷,mamicode.com
首页 > 其他好文 > 详细

更改滚动条样式

时间:2018-10-16 12:04:12      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:更改   repeat   tar   定义   idt   16px   url   阴影   背景   

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
  width: 16px;
  height: 16px;
  background-color: #113b9f;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  //-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #113b9f;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  //-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #3d83ff;
}

/* 定义滚动条渐增按扭的样式 */
::-webkit-scrollbar-button:end:increment {
  background: #143b9a url(‘images/scroll_cntrl_up.png‘) no-repeat center;
  background-size: 10px 10px;
  border-top: 0;
  width: 100%;
}

/* 定义滚动条渐减按扭的样式 */
::-webkit-scrollbar-button:start:decrement {
  background: #143b9a url(‘images/scroll_cntrl_dwn.png‘) no-repeat center;
  background-size: 10px 10px;
  width: 100%;
}

 

更改滚动条样式

标签:更改   repeat   tar   定义   idt   16px   url   阴影   背景   

原文地址:https://www.cnblogs.com/ouchen0312/p/9796922.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!