亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

html5使用canvas繪制文字特效

  發(fā)布時(shí)間:2014-12-15 16:48:59   作者:佚名   我要評(píng)論
這篇文章主要介紹了html5使用canvas繪制文字特效,需要的朋友可以參考下

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

復(fù)制代碼
代碼如下:

var canvas=document.getElementById("canvas");
var cxt=canvas.getContext("2d");
cxt.font="40px 黑體";
//繪制實(shí)心字
cxt.fillStyle="red";//填充紅色
cxt.fillText("hello,思思博士",10,50);
//繪制空心字
cxt.strokeStyle="red";//紅色邊
cxt.strokeText("hello,思思博士",10,100);

相關(guān)文章

最新評(píng)論