Groups
Groups
Sign in
Groups
Groups
鸿蒙之巅
Conversations
About
Send feedback
Help
JS 画矩形2
6 views
Skip to first unread message
TN
unread,
Nov 10, 2009, 3:23:16 AM
11/10/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to TNl论坛, 任 琥
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd
">
<html xmlns="
http://www.w3.org/1999/xhtml
">
<head>
<title>画线框</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="Author" content="Sheneyan" />
<script type="text/javascript">
var ns4 = document.layers;
var ns6 = document.getElementById && !document.all;
var ie4 = document.all;
var resizing=false;//是否正在画框
var curPositionX;//当前位置x坐标
var curPositionY;//当前位置y坐标
var startPointX;//起点x坐标
var startPointY;//起点y坐标
var endPointX;//终点x坐标
var endPointY;//终点y坐标
var border=null;//框,就是div
//获取鼠标位置
function moveToMouseLoc(e){
if(ns4||ns6){
curPositionX=e.pageX
curPositionY=e.pageY;
}
else{
curPositionX=event.x + document.body.scrollLeft;
curPositionY=event.y + document.documentElement.scrollTop;
}
return true;
}
function init(){
if(ns4) document.captureEvents(Event.MOUSEMOVE);
document.onmousemove=onResize;
document.onmouseup=onMouseUp;
document.onmousedown=onMouseDown;
border=document.createElement("div");
border.className="sizable_Sheneyan";
document.body.appendChild(border);
}
function onMouseUp(e){
if (resizing){
drawBorder();
resizing=false;
}
}
function onResize(e){
moveToMouseLoc(e);
if (resizing==false)
return true;
drawBorder();
}
function onMouseDown(e){
if (resizing==true)
return true;
resizing=true;
startPointX=curPositionX;
startPointY=curPositionY;
drawBorder();
}
function drawBorder(){
endPointX=curPositionX;
endPointY=curPositionY;
with(border.style){
width=Math.abs(startPointX-endPointX)+"px";
height=Math.abs(startPointY-endPointY)+"px";
left=Math.min(startPointX,endPointX)+"px";
top=Math.min(startPointY,endPointY)+"px";
}
}
</script>
<style type="text/css">
.sizable_Sheneyan{overflow:hidden;position:absolute;border:solid 1px;width:0px;height:0px;left:-100px;top:-100px;}
</style>
</head>
<body onload="init()">
</body>
</html>
Reply all
Reply to author
Forward
0 new messages