Discuz! Board

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 1224|回复: 1

画图求像的位置

[复制链接]

391

主题

1222

帖子

3902

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
3902
发表于 2023-6-29 23:01:50 | 显示全部楼层 |阅读模式
<canvas width="300" height="300" id="canvas"/><javascript>const canvas = document.querySelector('#canvas');
if (canvas.getContext) {  const ctx = canvas.getContext('2d');    // 设置线条宽度  ctx.lineWidth = 3;  // 门  ctx.fillStyle = 'rgb(159, 99, 71)';  ctx.fillRect(130, 190, 40, 60);  ctx.beginPath();  ctx.arc(140, 220, 3, 0, 2 * Math.PI);  ctx.fillStyle = 'black';  ctx.fill();  ctx.closePath();}</javascript>
回复

使用道具 举报

391

主题

1222

帖子

3902

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
3902
 楼主| 发表于 2023-6-29 23:03:02 | 显示全部楼层
const canvas = document.querySelector('#canvas');if (canvas.getContext) {const context = canvas.getContext('2d'); context.beginPath();context.moveTo(10, 10);context.lineTo(20, 20);context.closePath();context.stroke();/JavaScript>“
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|DiscuzX

GMT+8, 2025-4-5 16:58 , Processed in 0.040131 second(s), 18 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表