JS Mobile Finger Swipe

Source: Internet
Author: User

varstartx, starty;

     //获得角度      function getAngle(angx, angy) {          return Math.atan2(angy, angx) * 180 / Math.PI;      };      //根据起点终点返回方向 1向上 2向下 3向左 4向右 0未滑动      function getDirection(startx, starty, endx, endy) {          var angx = endx - startx;          var angy = endy - starty;          var result = 0;          //如果滑动距离太短          if (Math.abs(angx) < 2 && Math.abs(angy) < 2) {              return result;          }          var angle = getAngle(angx, angy);          if (angle >= -135 && angle <= -45) {              result = 1;          else if (angle > 45 && angle < 135) {              result = 2;          else if ((angle >= 135 && angle <= 180) || (angle >= -180 && angle < -135)) {              result = 3;          else if (angle >= -45 && angle <= 45) {              result = 4;          }          return result;      }      //手指接触屏幕      document.addEventListener( "touchstart" , function(e) {          startx = e.touches[0].pageX;          starty = e.touches[0].pageY;      },  false );      //手指离开屏幕      document.addEventListener( "touchend" , function(e) {          var endx, endy;          endx = e.changedTouches[0].pageX;          endy = e.changedTouches[0].pageY;          var direction = getDirection(startx, starty, endx, endy);          switch (direction) {              case 0:                  alert( "未滑动!" );                  break ;              case 1:                  alert( "向上!" )                  break ;              case 2:                  alert( "向下!" )                  break ;              case 3:                  alert( "向左!" )                  break ;              case 4:                  alert( "向右!" )                  break ;              default :          }      },  false );

JS Mobile Finger Swipe

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.