CSS3滾動條效果程式碼

antzone發表於2018-05-20

瀏覽器自帶的滾動條通常不太美觀,也難於美化。

下面分享一個使用css3實現的滾動條效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
body{
  padding:0;
  margin:0;
}
.box{ 
  width:600px;
  height: auto;
  margin:0 auto; 
}
.scroll{ 
  overflow:auto; 
  width: 470px;
  height: 210px;
  padding-right: 25px; 
  margin-top: 18px;
}
.scroll p{
  font-family: "微軟雅黑";
  font-size: 14px;
  color: #9F9F9F;
  line-height: 25px;
  margin-top: 20px;
}
#scroll-1 {
  overflow:auto;
}  
#scroll-1::-webkit-scrollbar {
  width:10px;
  height:10px;
}
#scroll-1::-webkit-scrollbar-button    {
  background-color:#fff;
}
#scroll-1::-webkit-scrollbar-track     {
  background:#dfdfdf;
        border-radius:5px;
}
#scroll-1::-webkit-scrollbar-thumb{
  background:#F2C826;
  border-radius:5px;
}
#scroll-1::-webkit-scrollbar-corner {
  background:#82AFFF;
}
#scroll-1::-webkit-scrollbar-resizer  {
  background:#dfdfdf;
}
</style>
</head>
<body>
  <div class="box">
    <div class="scroll" id="scroll-1">
      <p>只有努力奮鬥才會有美好的未來</p>
      <p>本站url是<a href="http://www.softwhy.com" target="_blank">www.softwhy.com</a></p>
      <p>沒有任何人可以隨隨便便的成功</p>
      <p>每一天都是新的,要好好的把握,否則太讓人可惜</p>
      <p>分享的精神和互助的胸懷是進步的最大原動力</p>
      <p>歡迎給本站提供良好的建議和意見</p>
      <p>本站擁有數個前端板塊,提供了基礎的相關知識</p>
    </div>
  </div>
</body>
</html>

相關文章