0
点赞
收藏
分享

微信扫一扫

滚动条样式汇总

程序员伟杰 2022-07-12 阅读 132

1.圆角矩形-常规

滚动条样式汇总_css

 

 

 

滚动条样式汇总_css_02

滚动条样式汇总_css_03

scrollbar {
/*滚动条整体样式*/
width: 10px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 1px;
}

body::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 20px;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
background: #535353;
}

body::-webkit-scrollbar-track {
/*滚动条里面轨道*/
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 20px;
background: #ededed;
}

View Code

2.蓝色花纹 -小清新

滚动条样式汇总_圆角矩形_04

 

 

滚动条样式汇总_css_02

滚动条样式汇总_css_03

scrollbar {
/*滚动条整体样式*/
width: 10px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 1px;
}

body::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
background-color: skyblue;
background-image: -webkit-linear-gradient(45deg,
rgba(255, 255, 255, 0.2) 25%,
transparent 25%,
transparent 50%,
rgba(255, 255, 255, 0.2) 50%,
rgba(255, 255, 255, 0.2) 75%,
transparent 75%,
transparent);
}

body::-webkit-scrollbar-track {
/*滚动条里面轨道*/
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
background: #ededed;
border-radius: 10px;
}

View Code

 

滚动条样式汇总_css_07

 

 单独某个div得滚动条样式修改

滚动条样式汇总_css_02

滚动条样式汇总_css_03

<div class="test test-1">
<div class="scrollbar"></div>
</div>
.test {
width : 50px;
height : 200px;
overflow: auto;
float : left;
margin : 5px;
border : none;
}
.scrollbar {
width : 30px;
height: 300px;
margin: 0 auto;
}
.test-1::-webkit-scrollbar {
/*滚动条整体样式*/
width : 10px; /*高宽分别对应横竖滚动条的尺寸*/
height: 1px;
}
.test-1::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
box-shadow : inset 0 0 5px rgba(0, 0, 0, 0.2);
background : #535353;
}
.test-1::-webkit-scrollbar-track {
/*滚动条里面轨道*/
box-shadow : inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 10px;
background : #ededed;
}

View Code

 

案例改自 ​​https://www.jianshu.com/p/c2addb233acd​​



举报

相关推荐

0 条评论