Javascript / Ionic3溢出:在Firefox中隐藏禁用滚动

时间:2017-11-16 10:30:44

标签: javascript jquery css firefox

我遇到的问题是我无法删除Firefox Quantum的Scrollbars。哦,它的工作原理就像这个css的魅力一样:

 div::-webkit-scrollbar {
  border:none;
  width:0;
  background: rgba(0,0,0,0);
  display: none;
  overflow-x: hidden;
  overflow-y: hidden;
}

div::-webkit-scrollbar-track {
  border:none;
  width:0;
  background: rgba(0,0,0,0);
  display: none;
  overflow-x: hidden;
  overflow-y: hidden;
}

div::-webkit-scrollbar-thumb {
  border:none;
  width:0;
  background: rgba(0,0,0,0);
  display: none;
  overflow-x: hidden;
  overflow-y: hidden;
}

此外,我尝试使用jQuery将其删除,并将其直接添加到body标签中,如style="overflow: hidden;"

这一切都无效。我似乎无法摆脱他们。 我该如何删除它们?

编辑:

添加overflow: hidden;.scroll-content{}它删除了滚动条,但我不能在Firefox上滚动了。如何使用overflow:hidden;

启用滚动

1 个答案:

答案 0 :(得分:2)

你可以这样做。

<style>
    #container{
        height: 500px;
        width: 200px;
        background-color: #ccc;
        overflow: hidden;
    }
    #container-inner{
        width: calc(100% + 17px);
        height: 100%;
        overflow: scroll;
        overflow-x: hidden;
    }
    .content{
        width: 100%;
        height: 300px;
    }
    .one{
        background-color: red;
    }
    .two{
        background-color: green;
    }
    .three{
        background-color: yellow;
    }
</style>
<div>
    <div id="container">
        <div id="container-inner">
            <div class="content one">
            </div>
            <div class="content two">
            </div>
            <div class="content three">
            </div>
        </div>
    </div>
</div>

我会创建一个小提琴,但https://jsfiddle.net/现在已经失效。