nicewoll mousescrollstep不滚动精确的像素

nicescroll mousescrollstep does not scroll exact pixels?

本文关键字:像素 滚动 mousescrollstep nicewoll      更新时间:2024-06-06

这来自nicewolls网站:

mousescrollstep-使用鼠标滚轮滚动速度,默认值为40(像素)

因此,当我想让用户在1080pxdiv中滚动5次时,我会这样做1080/5右,即216px。

但当我制作时

 $('body').niceScroll({
    mousescrollstep: 216,
  })

它在谷歌chrome 上滚动400

示例:http://codepen.io/anon/pen/PwevyW?editors=101

这个插件的编码方式。它使用了webkit浏览器不支持的功能。使用另一个插件。

https://github.com/inuyaksa/jquery.nicescroll/issues/127

吉布。