JS中画线

html>
<head>
<meta http-equiv= "Content-Type " content= "text/html; charset=gb2312 ">
<title> emu 's paint without vlm </title>
</head>

<SCRIPT LANGUAGE= "JavaScript">
<!--
function testDrawCurve()
{
document.getElementById('div1').innerHTML = drawCurve();
}
function testDrawArc()
{
document.getElementById('div1').innerHTML =drawArc(150,150,100,0,270, "viloet")
}
function testDrawCircle()
{
document.getElementById('div1').innerHTML = drawCircle(200,200,150, "blue");
}
function drawCircle(x0,y0,radius,color)
{
return drawArc(x0,y0,radius,0,360,color)
}
function testDrawLine()
{
document.getElementById('div1').innerHTML = drawLine(100,200,500,200, "yellow")+drawLine(300,100,300,400, "black")+drawLine(600,400,100,100, "violet")+drawLine(10,50,300,200, "red");
alert(drawLine(10,50,300,200, "red"));
}
function testDrawRectangle()
{
document.getElementById('div1').innerHTML = drawRectangle(200,100,600,200, "blue")+drawRectangle(100,200,400,500, "red")
}
function testDrawPie()
{
document.getElementById('div1').innerHTML = drawPie(300,200,120,0,45, "red");
}

function drawLine(x0,y0,x1,y1,color){

var rs =" ";
if(y0 == y1) //画横线
{
rs = " <table style= 'top: "+y0+ ";left: "+x0+ ";position:absolute '> <td bgcolor= "+color+ " height=3 width= "+Math.abs(x1-x0)+ "> </td> </table> ";
}
else if (x0 == x1) //画竖线
{
rs = " <table style= 'top: "+y0+ ";left: "+x0+ ";position:absolute '> <td bgcolor= "+color+ " width=1 height= "+Math.abs(y1-y0)+ "> </td> </table> ";
}
else
{
var lx = x1-x0 ;
var ly = y1-y0 ;
var l = Math.sqrt(lx*lx+ly*ly) ;
rs = new Array();
for (var i=0;i <l;i+=1) {
var p = i/l;
var px = x0 + lx*p;
var py = y0 + ly*p;
rs[rs.length] = " <table style= 'top: "+py+ ";left: "+px+ ";position:absolute '> <td bgcolor= "+color+ " height=3> </td> </table> ";
}
rs = rs.join(" ");
}
return rs
}
function drawRectangle(x0,y0,x1,y1,color)
{
if (x0 == x1 || y0 == y1) return;
if (x0> x1) {var t=x0;x0=x1;x1=t}
if (y0> y1) {var t=y0;y0=y1;y1=t}
return " <table style= 'top: "+y0+ ";left: "+x0+ ";position:absolute '> <td bgcolor= "+color+ " width= "+(x1-x0)+ " height= "+(y1-y0)+ "> </td> </table> ";
}
function drawPie(x0,y0,radius,startAngle,endAngle,color)
{
var rs = drawArc(x0,y0,radius,startAngle,endAngle,color)
startAngle = startAngle/360*Math.PI*2;
endAngle = endAngle/360*Math.PI*2;
var startx=Math.sin(startAngle)*radius+x0;
var endx=Math.sin(endAngle)*radius+x0;
var starty=Math.cos(startAngle)*radius+y0;
var endy=Math.cos(endAngle)*radius+y0;
rs += drawLine(x0,y0,startx,starty,color)
rs += drawLine(x0,y0,endx,endy,color)
return rs;
}
function drawArc(x0,y0,radius,startAngle,endAngle,color)
{
rs = new Array();
tmpar = new Array();
startAngle = startAngle/360*Math.PI*2;
endAngle = endAngle/360*Math.PI*2;
for (var i=startAngle;i <endAngle;i+=(1/radius))
{
var dx = Math.sin(i)*radius+x0;
var dy = Math.cos(i)*radius+y0;
rs[rs.length] = " <table style= 'top: "+dy+ ";left: "+dx+ ";position:absolute '> <td bgcolor= "+color+ " height=3> </td> </table> ";
}
return (rs.join( " "));
}
function drawCurve()
{
var rs = new Array();
for (var i=0;i <2*Math.PI;i+=.02)
{
var x = 300-Math.sin(i)*100
var y = 300-Math.cos(i)*100
rs[rs.length] = " <table style= 'top: "+x+ ";left: "+(i*100+90)+ ";position:absolute '> <td bgcolor=blue height=3> </td> </table> ";
rs[rs.length] = " <table style= 'top: "+y+ ";left: "+(i*100+90)+ ";position:absolute '> <td bgcolor=violet height=3> </td> </table> ";
}
return rs.join( " ");
}
//-->
</SCRIPT>

<body>
<button οnclick="testDrawCurve();"> 画曲线 </button>
<button οnclick= "testDrawArc();"> 画弧线 </button>
<button οnclick="testDrawCircle();"> 画圆 </button>
<button οnclick="testDrawLine();"> 画线 </button>
<button οnclick="testDrawRectangle();"> 画矩形 </button>
<button οnclick="testDrawPie();"> 画饼图 </button>
<div id=div1><table style='top:50.15;left:10.88;position:absolute'><td bgcolor=red height=1></td></table></div>

</body>
</html>

========================
//改div画线...
function drawLine(x0,y0,x1,y1,color){

var rs =" ";
if(y0 == y1) //画横线
{
rs = " <div style= 'background-color:"+color+ ";height:1;width:"+Math.abs(x1-x0)+";top: "+y0+ ";left: "+x0+ ";position:absolute;line-height: 1px; overflow: hidden;'></div>";
//<div style='width:1px;height:1px;top:50;left:10;position:absolute;background-color:red; line-height: 1px; overflow: hidden;'>

}
else if (x0 == x1) //画竖线
{
//rs = " <table style= 'top: "+y0+ ";left: "+x0+ ";position:absolute '> <td bgcolor= "+color+ " width=1 height= "+Math.abs(y1-y0)+ "> </td> </table> ";
rs = " <div style= 'background-color:"+color+ ";width:1;height:"+Math.abs(y1-y0)+";top: "+y0+ ";left: "+x0+ ";position:absolute;line-height: 1px; overflow: hidden;'></div>";
}
else
{
var lx = x1-x0 ;
var ly = y1-y0 ;
var l = Math.sqrt(lx*lx+ly*ly) ;
rs = new Array();
for (var i=0;i <l;i+=1) {
var p = i/l;
var px = x0 + lx*p;
var py = y0 + ly*p;
rs[rs.length] = " <div style= 'width:1px;height:1px;top: "+py+ ";left: "+px+ ";position:absolute;background-color:"+color+";line-height: 1px; overflow: hidden;'></div> ";
}
rs = rs.join(" ");
}
return rs
}
========================
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值