您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“H5中如何實(shí)現(xiàn)滾動(dòng)條樣式”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“H5中如何實(shí)現(xiàn)滾動(dòng)條樣式”這篇文章吧。
具體如下:
/* 滾動(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>
以上是“H5中如何實(shí)現(xiàn)滾動(dòng)條樣式”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(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)容。