我正在使用 jScrollPane,只是因为它是 Google 上的第一件事,我很累。所以,我首先要说我不反对使用不同的东西。
我有一个 2 列部分。右列使用 jScrollPane 插件并具有固定宽度。拖动滚动条时它可以工作,但鼠标滚轮插件似乎不起作用。我按以下顺序调用所有内容:
jquery.jscrollpane.css
jquery.jscrollpane.lozenge.css
jquery.min.js
jquery.mousewheel.js
mwheelIntent.js
jquery.jscrollpane.min.js
标记:
<div class="twocolumn">
<div class="img-lt"></div>
<div class="txt-rt scroll-pane">...</div>
</div>
这是CSS:
#content .twocolumn { overflow:hidden; }
#content .twocolumn .img-lt {
padding-right:22px;
border-right:1px solid #818283;
float:left;
}
#content .twocolumn .txt-rt {
padding-left:22px;
float:left;
width:556px;
height:409px;
}
并针对页面准备好通过
$(function(){ $('.scroll-pane').jScrollPane(); });
控制台没有报告错误。有什么想法吗?