CanvasRenderingContext2D:direction 属性
Canvas 2D API 的 CanvasRenderingContext2D.direction
属性用来在绘制文本时,描述当前文本方向。
值
示例
改变文字方向
这个示例绘制了两段文字。第一段是从左到右的,第二段是从右到左的。注意在 ltr
中的“Hi!”变成了在 rtl
中的“!Hi”。
HTML
html
<canvas id="canvas"></canvas>
JavaScript
js
const canvas = document.getElementById("canvas");
const ctx = canvas.getContext("2d");
ctx.font = "48px serif";
ctx.fillText("Hi!", 150, 50);
ctx.direction = "rtl";
ctx.fillText("Hi!", 150, 130);
结果
规范
Specification |
---|
HTML Standard # dom-context-2d-direction-dev |
浏览器兼容性
BCD tables only load in the browser
参见
- 定义此属性的接口:
CanvasRenderingContext2D