HTML canvas setTransform() 方法
HTML canvassetTransform()方法
HTML canvas 參考手冊
實例
繪制一個矩形,通過 setTransform() 重置并創建新的變換矩陣,再次繪制矩形,重置并創建新的變換矩陣,然后再次繪制矩形。請注意,每當您調用 setTransform() 時,它都會重置前一個變換矩陣然后構建新的矩陣,因此在下面的例子中,不會顯示紅色矩形,因為它在藍色矩形下面:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.fillStyle="yellow";
ctx.fillRect(0,0,250,100)
ctx.setTransform(1,0.5,-0.5,1,30,10);
ctx.fillStyle="red";
ctx.fillRect(0,0,250,100);
ctx.setTransform(1,0.5,-0.5,1,30,10);
ctx.fillStyle="blue";
ctx.fillRect(0,0,250,100);
var ctx=c.getContext("2d");
ctx.fillStyle="yellow";
ctx.fillRect(0,0,250,100)
ctx.setTransform(1,0.5,-0.5,1,30,10);
ctx.fillStyle="red";
ctx.fillRect(0,0,250,100);
ctx.setTransform(1,0.5,-0.5,1,30,10);
ctx.fillStyle="blue";
ctx.fillRect(0,0,250,100);
瀏覽器支持
Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 setTransform() 方法。
注意:Internet Explorer 8 及之前的版本不支持 <canvas> 元素。
定義和用法
畫布上的每個對象都擁有一個當前的變換矩陣。
setTransform() 方法把當前的變換矩陣重置為單位矩陣,然后以相同的參數運行 transform()。
換句話說,setTransform() 允許您縮放、旋轉、移動并傾斜當前的環境。
注意:該變換只會影響 setTransform() 方法調用之后的繪圖。
JavaScript 語法: | context.setTransform(a,b,c,d,e,f); |
---|
參數值
參數 | 描述 |
---|---|
a | 水平縮放繪圖。 |
b | 水平傾斜繪圖。 |
c | 垂直傾斜繪圖。 |
d | 垂直縮放繪圖。 |
e | 水平移動繪圖。 |
f | 垂直移動繪圖。 |
HTML canvas 參考手冊