如何使用鼠标滚动控制fullPage.js垂直滑块?

时间:2015-03-27 17:26:33

标签: javascript jquery html css fullpage.js

我正在使用这个插件 http://alvarotrigo.com/fullPage/ 并且所有部分工作正常,但我想像垂直滑块水平滑块也应该用鼠标滚动处理。这是我完成这个项目的最后一天。 请告诉我怎么做。 。 ?

提前致谢。

1 个答案:

答案 0 :(得分:-1)

我想你可以将en事件监听器附加到滑块以查看是否将鼠标移到...例如,

使用jQuery ...

$("#slider").mouseenter(function(){
   // halt the fullpage JS and the
})

$("#slider").mouseleave(function(){
   // resume the fullpage JS and the
})

也许这会指向你的方向,但有没有关于添加带有fullpage.js的滑块的文档?