首页 > 语言 > JavaScript > 正文

js实现两点之间画线的方法

2024-05-06 16:19:59
字体:
来源:转载
供稿:网友

这篇文章主要介绍了js实现两点之间画线的方法,涉及javascript图形绘制的相关技巧,需要的朋友可以参考下

本文实例讲述了js实现两点之间画线的方法。分享给大家供大家参考。具体分析如下:

最近有点无聊,琢磨了很久,想到了一消磨时间的点子,也就是做js版的连连看。

两点之间画线也只是连连看最基本功能的一部分,所以我画的线也仅是折线,而且还只能向左折,后面将根据连连看中图片位置点来确定折线的方向。

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
  6. <title>两点之间画折线</title> 
  7. <style type="text/css"
  8. body{ 
  9. font-size:12px; 
  10. </style> 
  11. </head> 
  12. <script type="text/javascript"
  13. <!-- 
  14. var dot=new Array(); 
  15. document.onmousedown =function(a)  
  16. {  
  17. //若div存在,则删除 
  18. if(document.getElementById('line_div')){ 
  19. var clearDiv=document.getElementById("line_div"); 
  20. clearDiv.parentNode.removeChild(clearDiv); 
  21. //按下时创建一个事件 
  22. if(!a) a=window.event; 
  23. //获取x轴、y轴坐标 
  24. var x=a.clientX; 
  25. var y=a.clientY; 
  26. //当数组长度大于等于4时,清空数组 
  27. if(dot.length>=4) dot.splice(0,4); 
  28. //将x、y添加到数组中,数组中保存了两组坐标值,相当于页面上的A(x1,y1)、B(x2,y2)两点 
  29. dot.push(x,y); 
  30. //当数组长度为4时,画线。 
  31. if(dot.length==4){ 
  32. //计算div的长和宽 
  33. var width=Math.abs(dot[0]-dot[2]); 
  34. var height=Math.abs(dot[1]-dot[3]); 
  35. //在页面上定位div左上角的具体位置 
  36. var left=dot[0]-dot[2]<0?dot[0]:dot[2]; 
  37. var top=dot[1]-dot[3]<0?dot[1]:dot[3]; 
  38. //创建div 
  39. var div=document.createElement("div"); 
  40. 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>'
  41. document.body.appendChild(div); 
  42. }  
  43. --> 
  44. </script> 
  45. <body> 
  46. </body> 
  47. </html> 

希望本文所述对大家的javascript程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选