HTML canvas textAlign属性

返回上一级

Canvas 对象的 textAlign 属性根据锚点,设置或返回文本内容的当前对齐方式

通常,文本会从指定位置 开始 ,不过,如果您设置为 textAlign="right" 并将文本放置到位置 150,那么会在 位置 150 结束

可以使用 fillText()strokeText() 方法在画布上实际地绘制并定位文本

语法

context.textAlign="center | end | left | right | start"

属性值

描述
start 默认。文本在指定的位置开始
end 文本在指定的位置结束
center 文本的中心被放置在指定的位置
left 文本在指定的位置开始
right 文本在指定的位置结束

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 textAlign 属性

Internet Explorer 8 及之前的版本不支持 <canvas> 元素

范例

在位置 150 创建一条红线。所有文本的锚点的位置是 150

你的浏览器不支持 canvas 元素
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);

运行范例 »

返回上一级

JavaScript 参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.