1 Star 1 Fork 0

13568953700/canvsStudy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
02基本使用.html 583 Bytes
一键复制 编辑 原始数据 按行查看 历史
13568953700 提交于 2024-06-05 14:07 . first commit
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
<script>
// 使用 js创建 canvas
//1.创建 canvas
const canvas = document.createElement("canvas");
//2,设置宽高
canvas.width = 600;
canvas.height= 400;
//3.添加到body中
document.body.appendChild(canvas);
//4 获取画笔
const ctx = canvas.getContext("2d");
//5 画出 fillRect
ctx.fillRect(100,100,50,50);
</script>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/xgdmax/canvs-study.git
git@gitee.com:xgdmax/canvs-study.git
xgdmax
canvs-study
canvsStudy
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385