canvas学习day01--创建矩形,边框,清除
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <! 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 > < canvas id="tutorial" width="300" height="300"> 你的浏览器不支持canvas,请升级你的浏览器</ canvas > < button onClick="clearCanvas(this)">清除一条线</ button > < script > /* 知识点: fillRect(x, y, width, height) 绘制一个填充的矩形 strokeRect(x, y, width, height) 绘制一个矩形的边框 clearRect(x, y, widh, height) 清除指定的矩形区域,然后这块区域会变的完全透明。 说明: 这3个方法具有相同的参数。 x, y:指的是矩形的左上角的坐标。(相对于canvas的坐标原点) width, height:指的是绘制的矩形的宽和高 */ var canvas = document.getElementById('tutorial'); console.log(canvas.getContext) if (canvas.getContext){ // 方式2 if(!canvas.getContext) return; var ctx = canvas.getContext('2d'); // drawing code here ctx.fillStyle = "rgb(200,0,0)"; // 设置填充色---//绘制矩形,填充的默认颜色为黑色 //绘制矩形 ctx.fillRect (10, 10, 55, 50); // 绘制矩形边框 ctx.strokeStyle = "#68217A"; // 设置颜色 ctx.strokeRect (65,60,50,60); // 绘制一个矩形的边框 // clearRect(x, y, widh, height) // 清除指定的矩形区域,然后这块区域会变的完全透明 ctx.fillStyle = "rgba(0, 0, 200, 0.5)"; ctx.fillRect (30, 30, 55, 50); } else { // canvas-unsupported code here } // 清除一条线 function clearCanvas(data){ console.log(data) // 清除指定的矩形区域,然后这块区域会变的完全透明 ctx.clearRect (65,55,55,10); } </ script > < style > canvas { border: 1px solid black; } </ style > </ body > </ html > |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?