gpt4 book ai didi

jquery - 使用 jquery nicescroll 时出现水平滚动条问题

转载 作者:行者123 更新时间:2023-11-28 08:05:59 24 4
gpt4 key购买 nike

我正在使用 nicescroll jquery 插件。 http://areaaperta.com/nicescroll/我收到不需要的水平滚动条。通过这样做 horizrailenabled:false,它会消失,但在调整窗口大小后不会出现。它也禁用我不想要的重新调整大小。我也尝试使用我所有的 css,这可能会导致出现水平条,但没有任何事情发生。我猜这可能是由于宽度问题。但无法弄清楚。

如何让这个水平条消失?

我的代码如下:

    <style>
body {
margin:0;
padding:0;
color:#000;
background:#FFFFFF;
letter-spacing:0.5px;
overflow-x:hidden;
}
.wrap{
background-color: #087877;
height: 100%;
overflow: hidden;
position: relative;
width:100% !important;
}
#scrollingContent{
padding-left: 149px;
padding-top: 136px;
}
#mainContent {
position:absolute;
padding:0;
top:0;
left:0;
width:100%;
height:100%;
font-family:mainFont;
color:#FFF;
overflow:hidden;
}
.contactHeader{
color: white;
font: 100 52px/60px 'TitilliumText25L1wt',Arial,sans-serif;
height: 125px;
left: 144px;
letter-spacing: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 10;
background-color: #178895;
line-height: 142px;
}
</style>

<div id="mainContent">
<div id="newsWrapper" class="wrap">
<div id="scrollingContent">
<div class="newsHeader">news</div>
//content
</div>
</div>
</div>

<script type="text/javascript">
$("#newsWrapper").niceScroll({touchbehavior:false,cursorborder:"0px solid #fff",cursorcolor:"#E1F3FF",cursoropacitymax:0.2,cursorborderradius:0,bouncescroll:true,scrollspeed:100, cursorwidth:15,autohidemode:false,zindex:10});
$("#newsWrapper").getNiceScroll().onResize()
</script>

最佳答案

为了避免不需要的滚动添加 css 。为了避免在你的 body 标签中不需要的滚动,请这样做。

body{
overflow-x: hidden; /*avoiding horizontal scrolling*/
}

关于jquery - 使用 jquery nicescroll 时出现水平滚动条问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29490485/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com