欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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)論