1 Star 0 Fork 0

李劲材/webOne

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
3正方形.html 984 Bytes
一键复制 编辑 原始数据 按行查看 历史
李劲材 提交于 2022-09-26 15:37 . 第一次提交
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
canvas {
border: 1px solid red;
}
</style>
</head>
<body>
<canvas width="500" height="500"></canvas>
<script>
// 获取dom节点
const canvas = document.querySelector("canvas")
// 获取画笔
const ctx = canvas.getContext("2d") // 2d 表示 画的2d图
ctx.lineWidth = 2;
ctx.strokeStyle = "blue";
ctx.fillStyle="blue"
// 画正方形
//上
ctx.moveTo(100, 100)
ctx.lineTo(200, 100)
//右
ctx.lineTo(200, 200)
//下
ctx.lineTo(100, 200)
//左
ctx.lineTo(100, 100)
ctx.fill();
ctx.closePath();
ctx.stroke()
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yyqljc/web-one.git
git@gitee.com:yyqljc/web-one.git
yyqljc
web-one
webOne
master

搜索帮助