首页 > 网站 > WEB开发 > 正文

html5使用canvas绘制文字特效

2024-04-27 14:59:38
字体:
来源:转载
供稿:网友

<canvas id="canvas" width="500" height="400" style="background-color: yellow;"></canvas>

代码如下:


var canvas=document.getElementById("canvas");
var cxt=canvas.getContext("2d");
cxt.font="40px 黑体";
//绘制实心字
cxt.fillStyle="red";//填充红色
cxt.fillText("hello,思思博士",10,50);
//绘制空心字
cxt.strokeStyle="red";//红色边
cxt.strokeText("hello,思思博士",10,100);
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表