canvas基础

Canvas绘图教程
本文介绍如何使用HTML5 Canvas API进行基本绘图操作,包括绘制直线、圆弧及复杂的七巧板图形。通过JavaScript代码实现不同形状的绘制,并设置了线条宽度、颜色等样式。

1.画直线(基于状态(moveTo,lineTo)的绘制(stroke)      moveTo lineTo stroke lineWidth strokeStyle 等这些方法 都基于canvas.getContext() 这个对象)

1 context.beginPath();
2 context.moveTo(100, 100);
3 context.lineTo(700, 700);
4 context.lineTo(100, 700);
5 context.lineTo(100, 100);
6 context.closePath();
7 context.lineWidth = 5;
8 context.strokeStyle = "#005588";
9 context.stroke();

2.画圓弧 arc方法(arc(共6个参数 中心点的x,y值,半径r,开始角度,结束角度,是否顺逆时针))

context.lineWidth = 5;
context.strokeStyle = "#005588";
for(var i = 0;i<10;i++){
context.beginPath();	
context.arc(50 + i*100,60,40,0,2*Math.PI*(i+1)/10);
context.closePath();
context.stroke();
}
for(var i = 0;i<10;i++){
context.beginPath()	
context.arc(50 + i*100,180,40,0,2*Math.PI*(i+1)/10);
context.stroke();
}

3.画七巧板

html部分

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title></title>
	</head>

	<body>
		<!--width="1024" height="786"-->
		<canvas id="canvas" style=" border:1px solid #aaa;display: block;margin: 50px auto;">
			<!--当前浏览器不支持canvas,请更换浏览器后再试-->
		</canvas>
	</body>
</html>

javascript部分

var tangram = [
{p:[{x:0,y:0},{x:800,y:0},{x:400,y:400}],color:"#caff67"},
{p:[{x:0,y:0},{x:400,y:400},{x:0,y:800}],color:"#67becf"},
{p:[{x:800,y:0},{x:800,y:400},{x:600,y:600},{x:600,y:200}],color:"#ef3d61"},
{p:[{x:600,y:200},{x:600,y:600},{x:400,y:400}],color:"#f9f51a"},
{p:[{x:400,y:400},{x:600,y:600},{x:400,y:800},{x:200,y:600}],color:"#a594c0"},
{p:[{x:200,y:600},{x:400,y:800},{x:0,y:800}],color:"#fa8ecc"},
{p:[{x:800,y:400},{x:800,y:800},{x:400,y:800}],color:"#f6ca29"}
]
		window.onload = function() {
			var canvas = document.getElementById('canvas');
			//设置画布的宽和高
			canvas.width = 800;
			canvas.height = 800;

			//判断浏览器是否支持canvas
			if(canvas.getContext('2d')) {
				var context = canvas.getContext("2d");
				//使用context绘制
			} else {
				alert("当前浏览器不支持canvas,请更换浏览器后再试");
			}
			
			for(var i = 0;i<tangram.length;i++){
				draw(tangram[i],context);
			}
		}
		function draw(piece,cxt){
			cxt.beginPath();
			cxt.moveTo(piece.p[0].x,piece.p[0].y);
			for(var i =1;i<piece.p.length;i++){
				cxt.lineTo(piece.p[i].x,piece.p[i].y);
				
			}
			cxt.closePath();
			
			cxt.fillStyle = piece.color;
			cxt.fill();
			
			cxt.strokeStyle = "black";
			cxt.lineWidth = 3;
			cxt.stroke();
		}

  

  

转载于:https://www.cnblogs.com/gjscool/p/7345464.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值