HTML 画布 strokeRect() 方法
HTML 画布 strokeRect() 方法用于在网页上创建一个矩形。<canvas> 元素允许你在网页上使用 Javascript 绘制图形。每个画布具有两个描述画布高度和宽度的元素,即高度和宽度。
以下为语法 −
context.strokeRect(p,q,width,height);
以上,
- p − 矩形左上角的 x 坐标
- q − 矩形左上角的 y 坐标
- width − 矩形的宽度
- height − 矩形的高度
现在让我们看一个实现画布 strokeStyle 属性的示例 −
示例
<!DOCTYPE html> <html> <body> <canvas id="newCanvas" width="550" height="400" style="border −2px solid orange;"></canvas> <script> var c = document.getElementById("newCanvas"); var ctx = c.getContext("2d"); ctx.strokeRect(120, 120, 220, 120); </script> </body> </html>
输出
广告