HTML Canvas - translate() 方法



Canvas API 的 HTML Canvas translate() 方法将 Canvas 元素内部的平移矩阵添加到当前矩阵中。

语法

以下为 HTML Canvas translate() 方法的语法

 
CanvasRenderingContext2D.translate(x, y); 

参数

以下列出了该方法的参数列表-

序号 参数和描述
1

x

水平方向的移动距离。

2

y

垂直方向的移动距离。

返回值

它将在调用此方法时返回对象的平移变换矩阵。

示例

以下示例平移 Canvas 坐标并使用 HTML Canvas translate() 方法在 Canvas 元素上绘制矩形。

<!DOCTYPE html>
<html lang="en">
<head>
   <title>Reference API</title>
   <style>
      body {
         margin: 10px;
         padding: 10px;
      }
   </style>
</head>
<body>
   <canvas id="canvas" width="250" height="200" style="border: 1px solid black;"></canvas>
   <script>
      var canvas = document.getElementById('canvas');
      var context = canvas.getContext('2d');
      context.translate(10, 10);
      context.fillStyle = 'blue';
      context.fillRect(25, 25, 150, 100);
   </script>
</body>
</html>

输出

以下代码在网页上返回的输出为-

HTML Canvas Translate Method

示例

以下示例使用 translate() 方法在 Canvas 元素上平移一条线。

<!DOCTYPE html>
<html lang="en">
<head>
   <title>Reference API</title>
   <style>
      body {
         margin: 10px;
         padding: 10px;
      }
   </style>
</head>
<body>
   <canvas id="canvas" width="150" height="150" style="border: 1px solid black;"></canvas>
   <script>
      var canvas = document.getElementById('canvas');
      var context = canvas.getContext('2d');
      context.translate(10, 10);
      context.strokeStyle = 'blue';
      context.moveTo(10, 10);
      context.lineTo(100, 100);
      context.stroke();
   </script>
</body>
</html>

输出

以下代码在网页上返回的输出为-

HTML Canvas Translate Method
html_canvas_shadows_and_transformations.htm
广告