Metoda HTML canvas rect() .

❮ HTML Canvas Reference

Příklad

Nakreslete obdélník 150*100 pixelů:

Váš prohlížeč nepodporuje HTML5canvatag.

JavaScript:

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

Podpora prohlížeče

Čísla v tabulce určují první verzi prohlížeče, která tuto metodu plně podporuje.

Method
rect() Yes 9.0 Yes Yes Yes

Definice a použití

Metoda rect() vytvoří obdélník.

Tip: Pomocí metody stroke() nebo fill() skutečně nakreslete obdélník na plátno.

Syntaxe JavaScriptu: kontext .rect( x,y, sirka, vyska );

Hodnoty parametrů

Parameter Description Play it
x The x-coordinate of the upper-left corner of the rectangle
y The y-coordinate of the upper-left corner of the rectangle
width The width of the rectangle, in pixels
height The height of the rectangle, in pixels

Další příklady

Příklad

Pomocí metody rect() vytvořte tři obdélníky:

Váš prohlížeč nepodporuje canvastag.

JavaScript:

var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");

// Red rectangle
ctx.beginPath();
ctx.lineWidth = "6";
ctx.strokeStyle = "red";
ctx.rect(5, 5, 290, 140);
ctx.stroke();

// Green rectangle
ctx.beginPath();
ctx.lineWidth = "4";
ctx.strokeStyle = "green";
ctx.rect(30, 30, 50, 50);
ctx.stroke();

// Blue rectangle
ctx.beginPath();
ctx.lineWidth = "10";
ctx.strokeStyle = "blue";
ctx.rect(50, 50, 150, 80);
ctx.stroke();


❮ HTML Canvas Reference