4

我有一个问题,我正在尝试使用触摸事件在画布上绘制一个正方形,但它不起作用,有人可以帮我找出原因吗?


到目前为止,这是我的代码:

JAVASCRIPT:

// "Draw Rectangle" Button
function rect(){
var canvas = document.getElementById('canvasSignature'), ctx = canvas.getContext('2d'), rect = {}, drag = false;

function init() {
  canvas.addEventListener("touchstart", touchHandler, false);
  canvas.addEventListener("touchmove", touchHandler, false);
  canvas.addEventListener("touchend", touchHandler, false);
}


function touchHandler(event) {
  if (event.targetTouches.length == 1) { //one finger touche
    var touch = event.targetTouches[0];

    if (event.type == "touchstart") {
      rect.startX = touch.pageX;
      rect.startY = touch.pageY;
      drag = true;
    } else if (event.type == "touchmove") {
      if (drag) {
        rect.w = touch.pageX - rect.startX;
        rect.h = touch.pageY - rect.startY ;
        draw();
      }
    } else if (event.type == "touchend" || event.type == "touchcancel") {
      drag = false;
    }
  }
}

function draw() {
  ctx.fillRect(rect.startX, rect.startY, rect.w, rect.h);
}

init();
}

HTML5:

      <div id="canvasDiv">
    <canvas id="canvasSignature" width="580px" height="788px" style="border:2px solid #000; background: #FFF;"></canvas>
</div>



<div id="rect">  
    <p><button onclick="rect();">Rectangle</button></p>
</div>  

再次感谢,沃登克里夫

4

1 回答 1

1

使用模拟触摸事件在 Chrome 中测试适用于这个jsFiddle问题似乎是你绑定点击事件的方式。我刚刚使用了 jQuery。

或者没有 jQuery:只是一个普通的 addEventListener

于 2012-06-06T21:12:00.413 回答