三角形 正方形

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
</head>
<body>
  <canvas id="canvas" width="300" height="300"></canvas>
  <script>
  var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');

ctx.beginPath();
ctx.moveTo(100,100);
ctx.lineTo(200,100);
ctx.lineTo(200,200);
ctx.lineTo(100,200);
ctx.closePath();
  ctx.stroke();
ctx.fillStyle = 'red';
ctx.fill();

//正方形
ctx.beginPath();
    ctx.moveTo(100, 100);
    ctx.lineTo(200, 100);
   ctx.lineTo(150, 30);
    ctx.closePath();
    ctx.stroke();
     ctx.fillStyle = 'yellow';
     ctx.fill();

//三角形
  </script>
</body>
</html>

posted @ 2018-12-02 18:28  维尼,小熊  阅读(164)  评论(0编辑  收藏  举报