1

我正在尝试为 iPad 创建一个绘图工具集,到目前为止我已经完成了正方形,但我不确定如何编写一条直线?这是我完成的正方形的代码,也许会有所帮助。我想知道如何编写一条直线。在那之后,如果我也想画圆圈怎么办?我需要更改此代码中的哪些内容?

这是代码:

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);


  ctx.clearRect(0, 0, canvas.width, canvas.height);



  ctx.fillStyle = "orange";
}

init();
}
4

1 回答 1

0

只需替换这个:

ctx.fillRect(rect.startX, rect.startY, rect.w, rect.h);

ctx.clearRect(0, 0, canvas.width, canvas.height);

像这样:

ctx.fillLine(rect.startX, rect.startY, rect.w, rect.h);

ctx.clearLine(0, 0, canvas.width, canvas.height);

这当然不是 100% 有效的代码,但这个概念应该有效,你会明白的

于 2012-06-12T17:40:48.477 回答