canvas

2020-02-11 18:46 更新

畫(huà)布。

屬性名類(lèi)型默認(rèn)值說(shuō)明
canvas-idStringN/Acanvas 組件的標(biāo)識(shí),必須設(shè)置該屬性
canvas組件的默認(rèn)寬度為 300px,高度為 225px.


示例

<canvas canvas-id="canvas" class="canvas"></canvas>
Page({
  onShow: function(res) {
    this.position = {
      x: 150,
      y: 150,
      vx: 2,
      vy: 2
    };
    this.interval = setInterval(this.drawBall, 17);
  },
  drawBall: function() {
    var p = this.position;
    p.x += p.vx;
    p.y += p.vy;
    if (p.x >= 300) {
      p.vx = -2;
    }
    if (p.x <= 7) {
      p.vx = 2;
    }
    if (p.y >= 300) {
      p.vy = -2;
    }
    if (p.y <= 7) {
      p.vy = 2;
    }

    var context = tt.createCanvasContext("canvas");

    function ball(x, y) {
      context.beginPath(0);
      context.arc(x, y, 5, 0, Math.PI * 2);
      context.setFillStyle("#1aad19");
      context.fill();
      context.stroke();
    }

    ball(p.x, 150);
    ball(150, p.y);
    ball(300 - p.x, 150);
    ball(150, 300 - p.y);
    ball(p.x, p.y);
    ball(300 - p.x, 300 - p.y);
    ball(p.x, 300 - p.y);
    ball(300 - p.x, p.y);

    console.log("will call context.draw");
    context.draw();
  },
  onUnload: function() {
    clearInterval(this.interval);
  }
});
相關(guān) api: tt.createCanvasContext
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)