Smooth horizontal scroll bound to mousewheel

后端 未结 7 638
星月不相逢
星月不相逢 2020-12-29 12:08

Here is a working example of horizontal scroll with mousewheel, but it does not scroll smoothly. By smoothly I mean like ordinary vertical scroll in Firefox or Opera.

<
7条回答
  •  粉色の甜心
    2020-12-29 12:56

    Just change this:

    this.scrollLeft -= (delta * 30);
    

    to this:

    this.scrollLeft -= (delta * 1);
    

提交回复
热议问题