What's the difference between “onwheel” and “onscroll” events?

前端 未结 4 2035
不知归路
不知归路 2020-12-20 13:09

When I tried to change the default scroll bar property, I found that it\'s not convenient by rewriting callback function for scroll() or onscroll e

4条回答
  •  不思量自难忘°
    2020-12-20 13:57

    The onwheel event triggers on scroll AND on zoom, as you move the mouse wheel, while the onscroll event only occurs when an element's scrollbar is being scrolled (i believe that includes touch scrolling as well).

提交回复
热议问题