溫馨提示×

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

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

H5的滾動(dòng)條樣式如何配置

發(fā)布時(shí)間:2020-07-09 13:39:36 來源:億速云 閱讀:162 作者:Leah 欄目:web開發(fā)

這篇文章將為大家詳細(xì)講解有關(guān)H5的滾動(dòng)條樣式如何配置,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

/* 滾動(dòng)條的滑軌背景顏色 */
::-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;
}

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

// IE 自己的設(shè)置方法,并且是第一個(gè)可以自定義滾動(dòng)條的瀏覽器,從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 {
}

<p 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>
</p>

關(guān)于H5的滾動(dòng)條樣式如何配置就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

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

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

AI