码迷,mamicode.com
首页 > Web开发 > 详细

html-3(4)

时间:2017-11-21 17:07:40      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:func   ntb   function   type   ext   sel   etc   top   fill   

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>绘制文字</title>
<script type="text/javascript">
 function drawText(){
  var canvas=document.getElementById("canvas1");
  var context=canvas.getContext(‘2d‘);
  context.fillStyle="ffffff";
  context.font=" italic 50px 微软雅黑";
  context.textAlign="center";
  context.textBaseline="top";
  context.fillText("你是我的段儿子!!!",200,100,1000);
 }
 </script>
</head>
<body>
<canvas id="canvas1" align="center" width="500" height="400"></canvas>
<input type="button" value="点击我绘制文字" align="center" onClick="drawText()"/>
</body>
</html>

html-3(4)

标签:func   ntb   function   type   ext   sel   etc   top   fill   

原文地址:http://www.cnblogs.com/wantao/p/7873672.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!