例
在畫一條紅線y=100 ,然後將每個單詞在y=100不同textBaseline值:
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 | 是 | 9 | 是 | 是 | 是 |
注:textBaseline屬性在不同瀏覽器的工作方式不同,尤其是在使用"hanging"或"ideographic" 。
定義和用法
該textBaseline屬性設置或返回當前文本基線繪製文本時使用。
下圖展示了支持的各種基線textBaseline屬性:
注: fillText()和strokeText()方法放置在畫布上的文本時將使用指定的textBaseline值。
默認值: | 拼音 |
---|---|
JavaScript語法: | context.textBaseline="alphabetic|top|hanging|middle|ideographic|bottom"; |
屬性值
值 | 描述 | 播放 |
---|---|---|
alphabetic | 默認。 文本基線是正常的字母基線 | 播放 ” |
top | 文本基線是em方塊上方 | 播放 ” |
hanging | 文字基準線為基線掛 | 播放 ” |
middle | 文本基線是EM廣場中間 | 播放 ” |
ideographic | 文本基線是表意基線 | 播放 ” |
bottom | 文本基線是邊框的底部 | 播放 ” |