色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

HTML canvas translate() 方法


HTML canvastranslate()方法

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

實例

在位置 (10,10) 處繪制一個矩形,將新的 (0,0) 位置設(shè)置為 (70,70)。再次繪制新的矩形(請注意現(xiàn)在矩形從位置 (80,80) 開始繪制):

JavaScript:

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.fillRect(10,10,100,50);
ctx.translate(70,70);
ctx.fillRect(10,10,100,50);


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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

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


定義和用法

translate() 方法重新映射畫布上的 (0,0) 位置。

注意:當(dāng)您在 translate() 之后調(diào)用諸如 fillRect() 之類的方法時,值會添加到 x 和 y 坐標(biāo)值上。

Illustration of the translate() method

JavaScript 語法:context.translate(x,y);

參數(shù)值

注意:You can specify one or both parameters.

參數(shù)描述
x添加到水平坐標(biāo)(x)上的值。
y添加到垂直坐標(biāo)(y)上的值。


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