12

编辑:“这不能在 Angular UI Modals 中完成”是一个有效的答案,如果情况确实如此。

这是我从触摸事件中获得的返回数据。明显缺少任何有用的触摸 X/Y 坐标(https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent/changedTouches)。这是一个无可救药的通用问题,但是,有什么想法吗?传递给在触摸时执行的函数的“事件”对象:

{
      "originalEvent": {
        "isTrusted": true
      },
      "type": "touchstart",
      "timeStamp": 1450388006795,
      "jQuery203026962137850932777": true,
      "which": 0,
      "view": "$WINDOW",
      "target": {},
      "shiftKey": false,
      "metaKey": false,
      "eventPhase": 3,
      "currentTarget": {},
      "ctrlKey": false,
      "cancelable": true,
      "bubbles": true,
      "altKey": false,
      "delegateTarget": {},
      "handleObj": {
        "type": "touchstart",
        "origType": "touchstart",
        "data": null,
        "guid": 2026,
        "namespace": ""
      },
      "data": null
    }

现在,这是在画布的角度 UI 模式中,但鼠标事件工作正常。这是我的元素顺便说一句:

link: function(scope, element, attrs, model){
                //scope.canvasElem = element[0].children[0].children[0];
                scope.canvasElem = angular.element($('.touchScreen'))[0];
                scope.ctx = scope.canvasElem.getContext('2d');

这是我如何绑定的示例:

element.bind('touchstart', scope.touchStart);

编辑,这里是一个 mousedown 事件对象用于比较:

{
  "originalEvent": {
    "isTrusted": true
  },
  "type": "mousedown",
  "timeStamp": 1450389131400,
  "jQuery20309114612976554781": true,
  "toElement": {},
  "screenY": 436,
  "screenX": 726,
  "pageY": 375,
  "pageX": 726,
  "offsetY": 81,
  "offsetX": 41,
  "clientY": 375,
  "clientX": 726,
  "buttons": 1,
  "button": 0,
  "which": 1,
  "view": "$WINDOW",
  "target": {},
  "shiftKey": false,
  "relatedTarget": null,
  "metaKey": false,
  "eventPhase": 3,
  "currentTarget": {},
  "ctrlKey": false,
  "cancelable": true,
  "bubbles": true,
  "altKey": false,
  "delegateTarget": {},
  "handleObj": {
    "type": "mousedown",
    "origType": "mousedown",
    "data": null,
    "guid": 2025,
    "namespace": ""
  },
  "data": null
}
4

3 回答 3

2

例如,您可以使用指令绑定触摸事件,指令内部可以有这样的代码,

element.on('touchstart', function (event) {
     event = event.originalEvent || event;
     //actions
     event.stopPropagation();   //if you need stop the propagation of the event
});

根据您的目标,还需要注意 4 种类型的触摸事件(touchstart、touchend、touchmove、touchcancel)的行为。为了捕获光标使用的位置,

element.on('touchmove', function (event) {
    event.preventDefault();
    if (event.targetTouches.length == 1) {  //when only has one target in touch
         var touch = event.targetTouches[0];
        // Place element where the finger is
        var x = touch.pageX + 'px';
        var y = touch.pageY + 'px';
    }
    event.stopPropagation();
});
于 2015-12-24T01:42:41.823 回答
1
var touchRelativeToViewWindow = {
    x: event.originalEvent.touches[0].pageX,
    y: event.originalEvent.touches[0].pageY
};

迟到总比没有好(注意,这是为了touchmove):

在浏览 AngularJs/jQuery 时,我们需要查看originalEvent所有细节。请注意,该[0]部分可能表示多个同时触摸。我不知道它们是如何排序的,但touches[0]可以是第一根手指,touches[1]也可以是第二根手指。上面的解决方案对我有用,因为我只希望用户使用手写笔。

于 2016-05-13T15:13:53.883 回答
0

要获取 x 和 y 坐标,请尝试使用以下代码

x1 = event.touches[0].pageX;
y1 = event.touches[0].pageY;
于 2015-12-21T12:39:31.027 回答