本文详细介绍了配备H5的翻转条款式的示例编码,共享给大伙儿,实际以下:
/* 翻转条的滑轨情况色调 */ ::-webkit-scrollbar-track { background-color: #b46868; } /* 滑块色调 */ ::-webkit-scrollbar-thumb { background-color: rgba(0, 0, 0, 0.2); } /* 滑轨两边的监视按钮色调 */ ::-webkit-scrollbar-button { background-color: #7c2929; } /* 横向翻转条和纵向翻转条交叉处尖角的色调 */ ::-webkit-scrollbar-corner { background-color: black; } // IE 自身的设定方式,而且是第1个能够自定翻转条的访问器,从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>
以上便是本文的所有內容,期待对大伙儿的学习培训有一定的协助,也期待大伙儿多多适用脚本制作之家。