下面是如何畫一個箭頭在傾斜線
以任意角度繪製箭頭的最簡單方法是使用畫布旋轉能力。
使用Math.atan
函數根據線的斜率計算適當的角度。
// calculate the radian angle of the line from [x1,y1] to [x2,y2]
var radianAngle=Math.atan((y2-y1)/(x2-x1));
// adjust the angle based on line slope
radianAngle+=((x2>x1)?90:-90)*Math.PI/180;
然後,你可以畫線:
// draw the line
ctx.beginPath();
ctx.moveTo(x1,y1);
ctx.lineTo(x2,y2);
ctx.stroke();
最後通過旋轉上下文連接箭頭。
// rotate the canvas context to the appropriate angle
ctx.rotate(radianAngle);
請注意,由於您已旋轉畫布本身,因此您只需將箭頭畫成水平狀態即可。簡單!
// save the un-transformed state of the context
ctx.save();
ctx.beginPath();
// translate to the end of the line
ctx.translate(x2,y2);
// rotate to the appropriate angle
ctx.rotate(radianAngle);
// draw the arrowhead
ctx.moveTo(0,0);
ctx.lineTo(8,20);
ctx.lineTo(-8,20);
ctx.closePath();
ctx.fill();
// when done drawing on the rotated context, set it back to its untransformed state
ctx.restore();
這裏是代碼和一個小提琴:http://jsfiddle.net/m1erickson/CQDww/
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" media="all" href="css/reset.css" /> <!-- reset css -->
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<style>
body{ background-color: ivory; }
canvas{border:1px solid red;}
</style>
<script>
$(function(){
var canvas=document.getElementById("canvas");
var context=canvas.getContext("2d");
function Line(x1,y1,x2,y2){
this.x1=x1;
this.y1=y1;
this.x2=x2;
this.y2=y2;
}
Line.prototype.drawWithArrowheads=function(ctx){
// arbitrary styling
ctx.strokeStyle="blue";
ctx.fillStyle="blue";
ctx.lineWidth=3;
// draw the line
ctx.beginPath();
ctx.moveTo(this.x1,this.y1);
ctx.lineTo(this.x2,this.y2);
ctx.stroke();
// draw the starting arrowhead
var startRadians=Math.atan((this.y2-this.y1)/(this.x2-this.x1));
startRadians+=((this.x2>this.x1)?-90:90)*Math.PI/180;
this.drawArrowhead(ctx,this.x1,this.y1,startRadians);
// draw the ending arrowhead
var endRadians=Math.atan((this.y2-this.y1)/(this.x2-this.x1));
endRadians+=((this.x2>this.x1)?90:-90)*Math.PI/180;
this.drawArrowhead(ctx,this.x2,this.y2,endRadians);
}
Line.prototype.drawArrowhead=function(ctx,x,y,radians){
ctx.save();
ctx.beginPath();
ctx.translate(x,y);
ctx.rotate(radians);
ctx.moveTo(0,0);
ctx.lineTo(8,20);
ctx.lineTo(-8,20);
ctx.closePath();
ctx.fill();
ctx.restore();
}
// create a new line object
var line=new Line(50,50,150,150);
// draw the line
line.drawWithArrowheads(context);
}); // end $(function(){});
</script>
</head>
<body>
<canvas id="canvas" width=300 height=300></canvas>
</body>
</html>
非常感謝你解釋這麼詳細的給我,那對我幫助很大! – user1151563