JQuery get touchstart,touchmove,touchend coordinates

Source: Internet
Author: User

jquery notation:

$ (' #id '). On (' Touchstart ',function(e) {var_touch = E.originalevent.targettouches[0]; var_x=_touch.pagex;}); $(' #id '). On (' Touchmove ',function(e) {var_touch = E.originalevent.targettouches[0]; var_x=_touch.pagex;}); $(' #id '). On (' Touchend ',function(e) {var_touch = E.originalevent.changedtouches[0]; var_x=_touch.pagex;}

Native notation:

document.getElementById ("id"). AddEventListener ("Touchstart",function(e) {var_x=e.touches[0].pagex; var_y=e.touches[0].pagey; Console.log ("Start", _x)}) document.getElementById ("id"). AddEventListener ("Touchmove",function(e) {var_x=e.touches[0].pagex; var_y=e.touches[0].pagey; Console.log ("Move", _x)}) document.getElementById ("id"). AddEventListener ("Touchend",function(e) {var_x=e.changedtouches[0].pagex; var_y=e.changedtouches[0].pagey; Console.log ("End", _x)})

Touchend need to use changedtouches[0 in both of these approaches]

Generally we take the coordinates of the first finger, if there are other requirements may need to determine the number of fingers

if (E.targettouches.length = = 1) {  //...}

By the way, put a common sentence

E.preventdefault ();

JQuery get touchstart,touchmove,touchend coordinates

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.