jScrollPane - MouseWheel无法正常工作

时间:2011-12-22 05:59:25

标签: scrollbar jscrollpane mousewheel jquery-jscrollpane

我正在使用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(); });

控制台报告没有错误。有什么想法吗?

1 个答案:

答案 0 :(得分:15)

我猜你正在使用jQuery 1.7。如果是这样,则需要更新控制滚轮的插件。 (jScrollPane插件中的一个依赖项)。

这是链接:

https://github.com/brandonaaron/jquery-mousewheel/