Firefox scrolling too fast/sensitive
See original GitHub issueWe have a web application using pixi-viewport
, but for users using Firefox, the zoom scrolling is much too fast compared to Chrome.
How to reproduce
- Open https://davidfig.github.io/pixi-viewport/ in Firefox (tested in 74.0.1, but observed with other versions).
- Scroll in and out and notice how very fast/sensitive it is.
- Compare this to Chrome (tested in 80.0.3987.149, but observed in others). Chrome’s scrolling is much more controlled and natural.
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
How do I slow down scrolling speed for Firefox in Windows 10?
The scroll speed is so fast it goes to the bottom of the page ... How to adjust the scrolling in Firefox on...
Read more >mouse/scroll speed adjustments? : r/firefox - Reddit
Is there a way to adjust the scroll speed only in Firefox, for some reason scrolling feels slower than when I scroll on...
Read more >How to Fix Mouse Wheel Scrolling Sensitivity in Latest Version ...
This article will cover a guide on modifying mouse scroll sensitivity using these hidden options. Browsing Hidden Options in Firefox. To view hidden...
Read more >Touchpad scrolling is too fast-sensitive (#3631) - gtk - GitLab
Firefox scroll like 100x faster. We need to provide the approximately same scroll experience on all apps independently of the GUI toolkit before ......
Read more >How to Change the Scrolling Speed in Firefox [Quick Tips]
1. Open a new tab in your Firefox browser and type “ about:config “. · 2. In the Search bar, type: mousewheel. ·...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Anecdotally, using Chrome on macOS 10.14 and scrolling my mouse one tick shows a
deltaMode
of 0 anddeltaY
of 4.Meanwhile, using Firefox and scrolling one tick shows a
deltaMode
of 1 and adeltaY
of 1 .I noticed this line in the Wheel Plugin:
https://github.com/davidfig/pixi-viewport/blob/f5a0db698af9c35a9e3789d5d3440641c6e072dd/src/plugins/wheel.js#L89
Perhaps the issue here is simply that PIXI Viewport’s fudge factor accounting for Line Scrolling is too sensitive? Based on my numbers above, changing that value to 4 should yield a more uniform experience (or better yet, maybe that should be a plugin option).
Fixed in #216