码迷,mamicode.com
首页 > 其他好文 > 详细

三角形 正方形

时间:2018-12-02 19:16:00      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:body   etc   pat   正方形   context   sep   html   tco   net   

<!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>

三角形 正方形

标签:body   etc   pat   正方形   context   sep   html   tco   net   

原文地址:https://www.cnblogs.com/weinixiong/p/10054481.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!