1.waitEnteringScroll指的是滚动容器的class
/*滚动条宽高*/
.waitEnteringScroll::-webkit-scrollbar{
width: 8px;
height: 8px;
}
/*正常情况下滑块的样式*/
.waitEnteringScroll::-webkit-scrollbar-thumb{
background-color: rgba(0, 0, 0, .05);
border-radius: 10px;
}
/*鼠标悬浮在该类指向的控件上时滑块的样式*/
.waitEnteringScroll:hover::-webkit-scrollbar-thumb{
background-color: rgba(0, 0, 0, .2);
border-radius: 10px;
box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1);
}
/*鼠标悬浮在滑块上时滑块的样式*/
.waitEnteringScroll::-webkit-scrollbar-thumb:hover{
background-color: rgba(0, 0, 0, .4);
box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1);
}
/*正常时候的主干部分*/
.waitEnteringScroll::-webkit-scrollbar-track{
border-radius: 10px;
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
background-color: white;
}
/*鼠标悬浮在滚动条上的主干部分*/
.waitEnteringScroll::-webkit-scrollbar-track:hover{
box-shadow: inset 0 0 6px rgba(0, 0, 0, .4);
background-color: rgba(0, 0, 0, .01);
}
网友评论