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

canvas

时间:2015-07-03 18:54:12      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>canvas</title>
</head>
<body>
<script>
	window.onload=function(){
		var canvas=document.getElementById("canvas")
		canvas.width=1024;
		canvas.height=768;
		canvas.style.border="solid 1px red"
		var context=canvas.getContext("2d")
		context.moveTo(100,100)
		context.lineTo(700,700)
		context.lineTo(100,700)
		context.lineTo(100,100)
		context.lineWidth=5
//		context.strokeStyle="red"
//		context.stroke()
        context.fillStyle="red"
		context.fill()
	}
</script>

<canvas  id="canvas">
	
</canvas>
</body>
</html>

canvas

标签:

原文地址:http://www.cnblogs.com/zhouyx/p/4619421.html

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