我正在使用niceScroll jQuery plugin作为我的内容。我的内容id为#node-10,这里是CSS:
#node-10{
height: 200px;
width: 370px;
}
#node-10 p{
padding-top:0;
margin-top:-3px;
padding-left:0;
padding-bottom:0;
}
和JS:
var nice = $("html").niceScroll({cursorborder:"",autohidemode:"false",cursorcolor:"##0076A3"}); // The document page (body)
$("#div1").html($("#div1").html()+' '+nice.version);
$("#node-10").niceScroll({cursorborder:"",autohidemode:false,cursorcolor:"red",boxzoom:true}); // First scrollable DIV
刷新我的网站。滚动在页面加载时不可见,但单击我的内容时,请滚动条。我该如何解决?
答案 0 :(得分:1)
目前尚不清楚你遇到的是同一个问题。
检查主页的颜色光标设置,错误地写了两个哈希字符“##”。
使用cursorcolor尝试正确:“#0076A3”
$("#node-10").niceScroll({cursorborder:"",autohidemode:false,cursorcolor:"red",boxzoom:true});
你可以在这里找到一个有效的例子: http://jsfiddle.net/29W4m/
答案 1 :(得分:0)
设置溢出:自动;对于第一个div