溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何配置H5的滾動條樣式

發(fā)布時(shí)間:2021-07-21 09:37:03 來源:億速云 閱讀:469 作者:小新 欄目:web開發(fā)

這篇文章主要介紹如何配置H5的滾動條樣式,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

具體如下:

/* 滾動條的滑軌背景顏色 */
::-webkit-scrollbar-track {
    background-color: #b46868;
}

/* 滑塊顏色 */
::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
} 

/* 滑軌兩頭的監(jiān)聽按鈕顏色 */
::-webkit-scrollbar-button {
    background-color: #7c2929;
}

/* 橫向滾動條和縱向滾動條相交處尖角的顏色 */
::-webkit-scrollbar-corner {
    background-color: black;
} 

// IE 自己的設(shè)置方法,并且是第一個(gè)可以自定義滾動條的瀏覽器,從IE5.5開始兼容
body {
    scrollbar-face-color: #b46868;
}
舉例
/* Document scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
/* Scrollable element */
.some-element::webkit-scrollbar {
}

<div class="custom-scrollbar">
    <p>
      Lorem ipsum dolor sit amet consectetur adipisicing elit. 
      Iure id exercitationem nulla qui repellat laborum vitae, 
      molestias tempora velit natus. Quas, assumenda nisi. 
      Quisquam enim qui iure, consequatur velit sit?
    </p>
</div>

以上是“如何配置H5的滾動條樣式”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI