最新的Web開發教程
 

HTML canvas textBaseline Propery

<畫布對象

繪製在y = 100紅線,然後將每個字在y = 100具有不同textBaseline值:

YourbrowserdoesnotsupporttheHTML5canvastag。

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 9 3.6 4 10.1

Note:該textBaseline屬性可能不同作品在瀏覽器中,尤其是在使用時"hanging""ideographic"


定義和用法

該textBaseline屬性設置或返回當前文本基線繪製文本時使用。

下圖展示了由支持的各種基線textBaseline屬性:

textBaseline插圖

Note:該fillText()strokeText()方法放置在畫布上的文字時,將使用指定的textBaseline值。

默認值: alphabetic
JavaScript語法: context .textBaseline="alphabetic|top|hanging|middle|ideographic|bottom";

屬性值

描述 播放
拼音 默認。 文本基線是正常的字母基線 播放 ”
最佳 文本基線是全身長方塊上方 播放 ”
文字基準線為基線掛 播放 ”
中間 文本基線是EM廣場中間 播放 ”
表意的 文本基線是表意基線 播放 ”
底部 文本基線是邊框的底部 播放 ”

<畫布對象