HTML canvas setTransform() 方法
實例
繪制一個矩形,通過 setTransform() 重置并創(chuàng)建新的變換矩陣,再次繪制矩形,重置并創(chuàng)建新的變換矩陣,然后再次繪制矩形。請注意,每當(dāng)您調(diào)用 setTransform() 時,它都會重置前一個變換矩陣然后構(gòu)建新的矩陣,因此在下面的例子中,不會顯示紅色矩形,因為它在藍(lán)色矩形下面:
JavaScript:
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> 元素。
定義和用法
畫布上的每個對象都擁有一個當(dāng)前的變換矩陣。
setTransform() 方法把當(dāng)前的變換矩陣重置為單位矩陣,然后以相同的參數(shù)運行 transform()。
換句話說,setTransform() 允許您縮放、旋轉(zhuǎn)、移動并傾斜當(dāng)前的環(huán)境。
注意:該變換只會影響 setTransform() 方法調(diào)用之后的繪圖。
JavaScript 語法: | context.setTransform(a,b,c,d,e,f); |
---|
參數(shù)值
參數(shù) | 描述 |
---|---|
a | 水平縮放繪圖。 |
b | 水平傾斜繪圖。 |
c | 垂直傾斜繪圖。 |
d | 垂直縮放繪圖。 |
e | 水平移動繪圖。 |
f | 垂直移動繪圖。 |
更多建議: