码迷,mamicode.com
首页 > 其他好文 > 详细

Canvas学习-1

时间:2014-12-23 13:51:49      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

简单示例


<!DOCTYPE html>
<html>
	<head>
		<style>
			body{
				background: #dddddd;
			}
			#canvas{
				margin:10px;
				padding:10px;
				background: #ffffff;
			}
		</style>
	</head>
	<body>
		<canvas id=‘canvas‘ width=‘600‘ height=‘300‘>
			Canvas not supported
		</canvas>
		<script type="text/javascript">
			var canvas =document.getElementById(‘canvas‘);
			context=canvas.getContext(‘2d‘);
			context.font=‘38pt Arial‘;
			context.fillStyle=‘cornflowerblue‘;
			context.strokeStyle=‘blue‘;
			context.fillText(‘Hello Valentine‘,canvas.width/2-150,canvas.height/2+15);
			context.fillStroke(‘Hello Valentine‘,canvas.width/2-150,canvas.height/2+15);
		</script>
	</body>
	<footer></footer>
</html>

注意:canvas默认大小为300*150像素

Canvas学习-1

标签:

原文地址:http://www.cnblogs.com/valentineisme/p/4179907.html

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