HTML canvas textAlign 屬性
HTML canvastextAlign屬性
HTML canvas 參考手冊
實(shí)例
在位置 150 創(chuàng)建一條紅線。位置 150 是下面實(shí)例中定義的所有文本的錨點(diǎn)。請研究每種 textAlign 屬性值的效果:
JavaScript:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
// Create a red line in position 150
ctx.strokeStyle="red";
ctx.moveTo(150,20);
ctx.lineTo(150,170);
ctx.stroke();
ctx.font="15px Arial";
// Show the different textAlign values
ctx.textAlign="start";
ctx.fillText("textAlign=start",150,60);
ctx.textAlign="end";
ctx.fillText("textAlign=end",150,80);
ctx.textAlign="left";
ctx.fillText("textAlign=left",150,100);
ctx.textAlign="center";
ctx.fillText("textAlign=center",150,120);
ctx.textAlign="right";
ctx.fillText("textAlign=right",150,140);
var ctx=c.getContext("2d");
// Create a red line in position 150
ctx.strokeStyle="red";
ctx.moveTo(150,20);
ctx.lineTo(150,170);
ctx.stroke();
ctx.font="15px Arial";
// Show the different textAlign values
ctx.textAlign="start";
ctx.fillText("textAlign=start",150,60);
ctx.textAlign="end";
ctx.fillText("textAlign=end",150,80);
ctx.textAlign="left";
ctx.fillText("textAlign=left",150,100);
ctx.textAlign="center";
ctx.fillText("textAlign=center",150,120);
ctx.textAlign="right";
ctx.fillText("textAlign=right",150,140);
瀏覽器支持
Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 textAlign 屬性。
注意:Internet Explorer 8 及之前的版本不支持 <canvas> 元素。
定義和用法
textAlign 屬性根據(jù)錨點(diǎn),設(shè)置或返回文本內(nèi)容的當(dāng)前對齊方式。
通常,文本會(huì)從指定位置開始,不過,如果您設(shè)置為 textAlign="right" 并將文本放置到位置 150,那么會(huì)在位置 150結(jié)束。
提示:請使用 fillText() 或 strokeText() 方法在畫布上實(shí)際地繪制并定位文本。
默認(rèn)值: | start |
---|---|
JavaScript 語法: | context.textAlign="center|end|left|right|start"; |
屬性值
值 | 描述 |
---|---|
start | 默認(rèn)。文本在指定的位置開始。 |
end | 文本在指定的位置結(jié)束。 |
center | 文本的中心被放置在指定的位置。 |
left | 文本在指定的位置開始。 |
right | 文本在指定的位置結(jié)束。 |
HTML canvas 參考手冊