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>

输出

更新于:30-07-2019

338 次浏览

Kickstart Your 职业生涯

通过完成课程获得认证

开始学习
广告