HTML canvas textBaseline 属性
实例
在 y=100 处画一条红线,然后用不同的 textBaseline 值将每个单词放在 y=100 处:
JavaScript:
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
//Draw a red line at y=100
ctx.strokeStyle = "red";
ctx.moveTo(5, 100);
ctx.lineTo(395, 100);
ctx.stroke();
ctx.font = "20px Arial"
//Place each word at y=100 with different textBaseline values
ctx.textBaseline = "top";
ctx.fillText("Top", 5, 100);
ctx.textBaseline = "bottom";
ctx.fillText("Bottom", 50, 100);
ctx.textBaseline = "middle";
ctx.fillText("Middle", 120, 100);
ctx.textBaseline = "alphabetic";
ctx.fillText("Alphabetic", 190, 100);
ctx.textBaseline = "hanging";
ctx.fillText("Hanging", 290, 100);
亲自试一试 »
浏览器支持
表中的数字表示支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
textBaseline | 4.0 | 9.0 | 3.6 | 4.0 | 10.1 |
注释: textBaseline 属性在浏览器中的工作方式可能不同,尤其是在使用"hanging"或"ideographic"时。
定义和用法
textBaseline 属性设置或返回绘制文本时使用的当前文本基线。
下图演示了 textBaseline 属性支持的各种基线:
注释: fillText() 和 strokeText() 方法将使用指定的 在画布上定位文本时的 textBaseline 值。
默认值: | alphabetic |
---|---|
JavaScript 语法: | context.textBaseline = "alphabetic|top|hanging|middle|ideographic|bottom"; |
属性值
Values | 描述 | Play it |
---|---|---|
alphabetic | 默认。 文本基线是正常的字母基线 | Play it » |
top | 文本基线是 em 正方形的顶部 | Play it » |
hanging | 文字基线为悬挂基线 | Play it » |
middle | 文本基线是 em 正方形的中间 | Play it » |
ideographic | 文本基线是表意基线 | Play it » |
bottom | 文本基线是边界框的底部 | Play it » |
❮ Canvas 对象