HTML canvas strokeRect() 方法

2023-05-18 10:56 更新

HTML canvas strokeRect() 方法

HTML canvas 參考手冊HTML canvas 參考手冊

實(shí)例

繪制 150*100 像素的矩形:

JavaScript:

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.strokeRect(20,20,150,100);

嘗試一下 ?

瀏覽器支持

Internet Explorer Firefox Opera Google Chrome Safari

Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 strokeRect() 方法。

注意:Internet Explorer 8 及之前的版本不支持 <canvas> 元素。


定義和用法

strokeRect() 方法繪制矩形(無填充)。筆觸的默認(rèn)顏色是黑色。

提示:請使用 strokeStyle 屬性來設(shè)置筆觸的顏色、漸變或模式。

JavaScript 語法: context.strokeRect(x,y,width,height);

參數(shù)值

參數(shù) 描述
x 矩形左上角的 x 坐標(biāo)。
y 矩形左上角的 y 坐標(biāo)。
width 矩形的寬度,以像素計(jì)。
height 矩形的高度,以像素計(jì)。


HTML canvas 參考手冊HTML canvas 參考手冊
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號