I build a web mobile game, it runs on browsers (PC/Mobile).
Do I need to use the touchmove or not?
How can I run the touchmove event like the mousemove event?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For parity between desktop and touch you have the following equivalences:
Thus if you handle
mousedown,mousemoveandmouseupthen you don’t need to handle the corresponding equivalent events under touch. The same handlers should be executing.