Smooth vertical scrolling on mouse wheel in vanilla javascript?

后端 未结 3 548
夕颜
夕颜 2020-12-04 17:07

I am a huge fan for vanilla javascript, currently I am working on a project where I need to implement smooth scrolling on mouse wheel scroll. I want to implement this using

3条回答
  •  情歌与酒
    2020-12-04 17:40

    A pure JavaScript onscroll event will work:

    var container = document.getElementById('myScrollingSurface');
    var lastY = 0;
    container.onscroll = function () {
      doSomethingCool(container.scrollTop - lastY);
      lastY = container.scrollTop;
    };
    

提交回复
热议问题