博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

Canvas 笔记

Posted on 2022-05-28 09:23  pencilCool  阅读(22)  评论(0编辑  收藏  举报

https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API/Tutorial

index.html

<!DOCTYPE html>
<html>
  <head>

  </head>
  <body>
    <canvas id="canvas"></canvas>
    <script src="script.js"></script>
 
  </body>
  </html>

script.js

console.log("hello")

const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');

ctx.fillStyle = 'green';
ctx.fillRect(10, 10, 150, 100);