이 글의 예시에서는 js에서 두 점 사이에 선을 그리는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
요즘 좀 심심해서 오랫동안 고민하다가 시간 때우기 아이디어가 떠올랐어요. 바로 Lianliankan의 js 버전을 만들어보자는 거였어요.
두 점 사이에 선을 그리는 것은 Lianliankan의 가장 기본적인 기능 중 일부일 뿐이므로 제가 그린 선은 폴리라인일 뿐이며 왼쪽으로만 접힐 수 있습니다. 나중에 폴리라인의 방향은 이를 기준으로 결정됩니다. Lianliankan의 사진 위치에 있습니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>两点之间画折线</title> <style type="text/css"> body{ font-size:12px; } </style> </head> <script type="text/javascript"> <!-- var dot=new Array(); document.onmousedown =function(a) { //若div存在,则删除 if(document.getElementById('line_div')){ var clearDiv=document.getElementById("line_div"); clearDiv.parentNode.removeChild(clearDiv); } //按下时创建一个事件 if(!a) a=window.event; //获取x轴、y轴坐标 var x=a.clientX; var y=a.clientY; //当数组长度大于等于4时,清空数组 if(dot.length>=4) dot.splice(0,4); //将x、y添加到数组中,数组中保存了两组坐标值,相当于页面上的A(x1,y1)、B(x2,y2)两点 dot.push(x,y); //当数组长度为4时,画线。 if(dot.length==4){ //计算div的长和宽 var width=Math.abs(dot[0]-dot[2]); var height=Math.abs(dot[1]-dot[3]); //在页面上定位div左上角的具体位置 var left=dot[0]-dot[2]<0?dot[0]:dot[2]; var top=dot[1]-dot[3]<0?dot[1]:dot[3]; //创建div var div=document.createElement("div"); div.innerHTML=' <div id="line_div" style="width:'+width+'px;height:'+height+'px;position:absolute;visibility:visible;left:'+left+'px;top:'+top+'px;border-left:1px solid #cdcdcd;border-top:1px solid #cdcdcd;"></div>'; document.body.appendChild(div); } } --> </script> <body> </body> </html>
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.