touch.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', {
  3. value: true
  4. });
  5. exports.touch = void 0;
  6. var MIN_DISTANCE = 10;
  7. function getDirection(x, y) {
  8. if (x > y && x > MIN_DISTANCE) {
  9. return 'horizontal';
  10. }
  11. if (y > x && y > MIN_DISTANCE) {
  12. return 'vertical';
  13. }
  14. return '';
  15. }
  16. exports.touch = {
  17. methods: {
  18. resetTouchStatus: function () {
  19. this.direction = '';
  20. this.deltaX = 0;
  21. this.deltaY = 0;
  22. this.offsetX = 0;
  23. this.offsetY = 0;
  24. },
  25. touchStart: function (event) {
  26. this.resetTouchStatus();
  27. var touch = event.touches[0];
  28. this.startX = touch.clientX;
  29. this.startY = touch.clientY;
  30. },
  31. touchMove: function (event) {
  32. var touch = event.touches[0];
  33. this.deltaX = touch.clientX - this.startX;
  34. this.deltaY = touch.clientY - this.startY;
  35. this.offsetX = Math.abs(this.deltaX);
  36. this.offsetY = Math.abs(this.deltaY);
  37. this.direction = this.direction || getDirection(this.offsetX, this.offsetY);
  38. }
  39. }
  40. };