You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having a trouble when I try to get normalized values, especially for Chrome on Windows 7 :
• for mouse wheel up and down, on Chrome Mac, on your demo website, I get values between : 400, -400
• on Firefox (both Windows and Mac), inertia makes values sometimes go crazy : 5000, -5000 but I can handle it
• on Chrome Windows, it's really weird, with the same test as above, I get : 4, -4 max.
What can i do ?
The text was updated successfully, but these errors were encountered:
Well, actually, it's mostly hardware related issues.
My question wasn't clear : my tests on Mac were done with a Apple Magic Mouse (touch to scroll), when my test on Windows were done with a "classic" mouse (middle roller). I figured this out after opening this issue.
On a "classic" mouse : events are sent only on wheel "scale". On mouse with touch scroll : events are sent whenever the finger moves on the surface, so it makes much more events to handle.
I needed to increment this values, so it was really different on this two type of devices. I made a dirty fix to prevent this (based on setInterval(), so really dirty) to "normalize" values arbitrary.
Hi,
I'm having a trouble when I try to get normalized values, especially for Chrome on Windows 7 :
• for mouse wheel up and down, on Chrome Mac, on your demo website, I get values between : 400, -400
• on Firefox (both Windows and Mac), inertia makes values sometimes go crazy : 5000, -5000 but I can handle it
• on Chrome Windows, it's really weird, with the same test as above, I get : 4, -4 max.
What can i do ?
The text was updated successfully, but these errors were encountered: