HTML5 canvas fillText() 方法

实例

使用 fillText()写文本 "Hello world!" 和 "51help.tk":

Your browser does not support the HTML5 canvas tag.

JavaScript:

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");

ctx.font="20px Georgia";
ctx.fillText("Hello World!",10,50);

ctx.font="30px Verdana";
// 创建渐变
var gradient=ctx.createLinearGradient(0,0,c.width,0);
gradient.addColorStop("0","magenta");
gradient.addColorStop("0.5","blue");
gradient.addColorStop("1.0","red");
// 
ctx.fillStyle=gradient;
ctx.fillText("51help.tk",10,90);

Internet Explorer 9、Firefox、Opera、Chrome 以及 Safari 支持 fillText() 方法。

注释:Internet Explorer 8 <canvas> 元素。

fillText()

提示:请使用 font ,并使用 fillStyle 种颜色/文本。

JavaScript 语法:

context.fillText(text,x,y,maxWidth);

参数值

参数 描述
text 本。
x 本的 x )。
y 本的 y )。
maxWidth 素计。