画布方向属性
示例
ctx.font = "24px serif";
ctx.direction = "ltr";
ctx.fillText("W3Schools", 150, 50);
ctx.direction = "rtl";
ctx.fillText("W3Schools", 150, 60);
试一试 »
描述
The direction
属性指定绘制文本的方向。
默认值为 inherit
(继承自文档)。
另请参阅
The font Property (设置文本字体和大小)
The fillStyle Property (设置文本颜色/渐变)
The textAlign Property (设置文本基线)
The textBaseline Property (设置文本基线)
The fillText() Method (绘制文本)
The strokeText() Method (绘制文本)
语法
context.direction |
可能的值
值 | 描述 |
---|---|
ltr | 从左到右 |
rtl | 从右到左 |
inherit | 从文档继承 |
浏览器支持
The <canvas>
元素是 HTML5 标准 (2014)。
direction
在所有现代浏览器中都受支持
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 9-11 |
❮ 画布参考