11

一般在滚动条中,垂直滚动条的两端都会有上下箭头。

无论如何要删除它,以便只出现滚动条而不是两端的箭头。下面是我的CSS:

.scrollbar-vertical
{
    top: 0;
    right: 0;
    width: 17px;
    height: 100%;
    overflow-x: hidden;
    scrollbar-3dlight-color:#999;
    scrollbar-arrow-color:white;
    scrollbar-base-color:white;
    scrollbar-face-color:#999;
    border-radius:5px 5px; 
}
4

3 回答 3

6

通过假设您要自定义浏览器滚动条,

您可以使用一些不错的 Jquery 插件轻松做到这一点,或者您可以使用 css 来实现这一点。但它目前仅适用于 webkit 浏览器,这里是如何

::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255,0,0,0.8); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

来源:http ://css-tricks.com/custom-scrollbars-in-webkit/

否则,您可以使用插件。(推荐的)

正如在早期评论中一样,我建议您使用 niceScroller 插件。这很好也很容易。

资料来源:http ://areaaperta.com/nicescroll/

简单的实现

<script> 

     $(document).ready(

      function() { 

        $("html").niceScroll();

      }

    );

</script>
于 2013-07-20T07:49:34.697 回答
0

您可以在 CSS 中使用以下样式来隐藏滚动条箭头,

::-moz-scrollbar-button:decrement,
::-moz-scrollbar-button:increment,
::-webkit-scrollbar-button:decrement,
::-webkit-scrollbar-button:increment {
  width: 0px;
}

或者

::-moz-scrollbar-button, ::-webkit-scrollbar-button {
  width: 0px;
}
于 2018-02-15T09:16:46.777 回答
-3
visibility: collapse !important; 

也许 ?

于 2013-07-20T04:15:44.200 回答