Canvas fillText() 方法
示例
使用 fillText() 在画布上写入 "Hello world!" 和 "Big smile!"(带渐变)
JavaScript
const c = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");
ctx.font = "20px Georgia";
ctx.fillText("Hello World!", 10, 50);
ctx.font = "30px Verdana";
// 创建渐变
const 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("Big smile!", 10, 90);
自己尝试 »
描述
The fillText()
方法在画布上绘制填充文本。
默认 fillStyle
为 #000000(纯黑色)。
语法
context.fillText(text, x, y, maxWidth) |
参数值
参数 | 描述 | 播放 |
---|---|---|
text | 要在画布上写入的文本 | 播放 » |
x | 文本的起始 x 坐标 | 播放 » |
y | 文本的起始 y 坐标 | 播放 » |
maxWidth | (可选)文本的最大宽度(以像素为单位) | 播放 » |
返回值
NONE |
浏览器支持
The <canvas>
element is an HTML5 standard (2014).
fillText()
在所有现代浏览器中都受支持
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 9-11 |
❮ Canvas 参考