|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
HTML5草案的前身名为WebApplications1.0,于2004年被WHATWG提出,于2007年被W3C接纳,并成立了新的HTML工作团队。破洛洛文章简介:要设置笔触色彩HTML5Canvas的文本,我们可使用的strokeStyle画布的背景和strokeText()办法。
要设置笔触色彩HTML5Canvas的文本,我们可使用的strokeStyle画布的背景和strokeText()办法。
- context.strokeStyle=[value];context.strokeText("HelloWorld!",x,y);
复制代码 先看下个例子:
<!DOCTYPEHTML>
<html>
<head>
<title>html5_canvas_text_stroke</title>
<style>
body{margin:0px;padding:0px;}
#myCanvas{border:1pxsolid#9C9898;margin:0auto;margin-top:200px;margin-left:100px;}
</style>
<script>
window.onload=function(){
varcanvas=document.getElementById("myCanvas");
varcontext=canvas.getContext("2d");
varx=80;
vary=110;
context.font="60ptCalibri";
context.lineWidth=3;
context.strokeStyle="blue";//strokecolor
context.strokeText("HelloWorld!",x,y);
};
</script>
</head>
<body>
<canvasid="myCanvas"width="578"height="200">
</canvas>
</body>
</html>
</p>
HTML标准自1999年12月发布的HTML4.01后,后继的HTML5和其它标准被束之高阁,为了推动Web标准化运动的发展. |
|