Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Canvas transform() 方法

❮ Canvas 参考

示例

绘制一个矩形,使用 transform() 添加一个新的变换矩阵,再次绘制矩形,添加一个新的变换矩阵,然后再次绘制矩形。请注意,每次调用 transform() 时,它都会在先前的变换矩阵的基础上进行构建。

您的浏览器不支持 HTML5 canvas 标签。

JavaScript

const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");

ctx.fillStyle = "yellow";
ctx.fillRect(0, 0, 250, 100)

ctx.transform(1, 0.5, -0.5, 1, 30, 10);
ctx.fillStyle = "red";
ctx.fillRect(0, 0, 250, 100);

ctx.transform(1, 0.5, -0.5, 1, 30, 10);
ctx.fillStyle = "blue";
ctx.fillRect(0, 0, 250, 100);
亲自尝试 »


描述

The transform() 方法缩放、旋转、移动和倾斜上下文。

画布上的每个对象都有一个变换矩阵。

The transform() 方法替换变换矩阵,并用以下描述的矩阵乘以它

a c e
b d f
0 0 1

注意

变换会影响在调用 transform() 之后进行的绘制。

变换是相对于其他 rotate()、scale()、translate() 或 transform() 变换的。如果缩放两倍,transform() 缩放两倍,则绘制将缩放四倍。

另请参阅

The scale() 方法 (缩放上下文)

The rotate() 方法 (旋转上下文)

The translate() 方法 (重新映射 0,0 位置)

The setTransform() 方法 (缩放、旋转、移动、倾斜上下文)。


语法

context.transform(a, b, c, d, e, f)

参数值

参数 描述 播放它
a 水平缩放绘图 播放它 »
b 水平倾斜绘图 播放它 »
c 垂直倾斜绘图 播放它 »
d 垂直缩放绘图 播放它 »
e 水平移动绘图 播放它 »
f 垂直移动绘图 播放它 »

返回值


浏览器支持

The <canvas> 元素是 HTML5 标准 (2014)。

transform() 在所有现代浏览器中都受支持

Chrome Edge Firefox Safari Opera IE
9-11

❮ Canvas 参考
×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.