<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
<style type="text/css">
#layer1{
position:absolute;
left:200px;
top:200px;
border:#CCCCCC solid 1px;
width:100px;
height:100px;
cursor:pointer;
background-color:#251411;
-moz-user-select:none;
}
</style>
</HEAD>
<script language="JavaScript" type="text/javascript">
window.onload=function(){
drag(document.getElementById("layer1"));
};
function drag(o){
//过滤层中子节点事件
//if(o.firstChild){o.firstChild.onmousedown=function(){return false;};}
o.onselectstart=function() {return(false)};
o.onmousedown=function(e){
e=e||window.event;
var x=e.layerX||e.offsetX;
var y=e.layerY||e.offsetY;
document.onmousemove=function(e){
e=e||window.event;
o.style.left=(e.clientX-x)+"px";
o.style.top=(e.clientY-y)+"px";
};
document.onmouseup=function(){document.onmousemove=null;};
};
}
</script>
<BODY>
<div id="layer1"><a href="http://www.Flashbase.cn">Flash游戏大本营</a></div>
<div ><a href="http://www.xrss.cn">网络大本营</a></div>
</BODY>
</HTML>