例
繪製一個150 * 100像素的矩形:
JavaScript的:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.strokeRect(20,20,150,100);
試一試» 瀏覽器支持
在表中的數字規定,完全支持方法的第一個瀏覽器版本。
方法 | |||||
---|---|---|---|---|---|
strokeRect() | 4 | 9 | 3.6 | 4 | 10.1 |
定義和用法
所述strokeRect()方法中繪製一個矩形(no fill) 。 筆觸的默認顏色為黑色。
Tip:使用的StrokeStyle屬性來設置顏色,漸變或圖案樣式行程。
JavaScript語法: | context 。 strokeRect( x,y,width,height ) ; |
---|
參數值
參數 | 描述 | 播放 |
---|---|---|
x | 矩形的左上角的x坐標 | 播放 ” |
y | 矩形的左上角的y坐標 | 播放 ” |
width | 矩形的寬度,以像素為單位 | 播放 ” |
height | 矩形的高度,以像素為單位 | 播放 ” |
<畫布對象