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 setTransform() 方法

❮ Canvas 参考资料

示例

绘制一个矩形。重置变换矩阵。再次绘制矩形。重置变换矩阵。再次绘制矩形。

每次调用 setTransform() 时,它都会构建一个新的矩阵。在下面的示例中,红色矩形没有显示,因为它位于蓝色矩形的下方

YourbrowserdoesnotsupporttheHTML5canvastag.

JavaScript

const canvas = document.getElementById("myCanvas");
const ctx = canvas.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);
自己尝试一下 »

描述

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

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

The setTransform() 方法将变换矩阵重置为单位矩阵,然后使用相同的参数运行 transform()

注意

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

另请参阅

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

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

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

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


语法

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

参数值

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

返回值


浏览器支持

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

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

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.