Touchmove and mousemove not working as expected, how do I fix this? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 3

Touchmove and mousemove not working as expected, how do I fix this?

I have the code below When you hover with your mouse or finger over the card, it should call the function from js line 1. It works fine with mouse but it s not working as I expect it to when using the touch. Hell. https://code.sololearn.com/Wa16A16A24a1/?ref=app

3rd Aug 2021, 5:46 PM
🍇 Alex Tușinean 💜
🍇 Alex Tușinean 💜 - avatar
1 Answer
+ 2
You are using mousemove event .And with touchmove you need to specify touch-action:none as well otherwise browser native touch action comes into play thus blocking user gesture like touch move.
3rd Aug 2021, 7:07 PM
Abhay
Abhay - avatar