| 网管联盟 | 网管论坛 | 网管u家 | 网管博客 | 网管软件 | 网管求职 | 小游戏 | 网管搜索 | 网管原创 | 网管聚合 | 网管读摘 | 网管焦点 | 世界素材 | 会员投稿 | 会员中心 |
![]() |
| Windows Linux Cisco 网络技术 数据库 黑客攻防 DotNet Java PHP 认证 新闻资讯 服务器 存储资讯 网络设备 网管学堂 技术专题 焦点 网吧频道 |
基本上msn、microsoft Live 和GOOGLE个性主页 元素可拖动并放置的的实现原理就是对DOM的操作再加上JAVASCRIPT拖动元素。实现起来实际上并不难,但是要做到很美观并符合用户习惯就需要一些时间思考了。
以下代码实现了上述功能,虽然很简单,但是基本上说明了原理。实现更高级的功能当然还需要改进。
| <!doctype HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html> <head> <title>DropLayer2</title> <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1"> <meta name="CODE_LANGUAGE" Content="C#"> <meta name="vs_defaultClientScript" content="JavaScript"> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> <style type="text/css"> div { border-right: lightgrey thin solid; border-top: lightgrey thin solid; font-weight: bold; z-index: 2; text-transform: capitalize; border-left: lightgrey thin solid; color: white; 网管u家www.bitscn.net border-bottom: lightgrey thin solid; background-color: dimgray; } </style> </head> <body> <div id="parentDiv" class="parentCss" style="width:100"> <div class="itemCss" onmouseover="InsertDiv(this)">one 1</div> <div class="itemCss" onmouseover="InsertDiv(this)">two 2</div> <div class="itemCss" onmouseover="InsertDiv(this)">three 3</div> <div class="itemCss" onmouseover="InsertDiv(this)">four 4</div> <div class="itemCss" onmouseover="InsertDiv(this)">five 5</div> <div class="itemCss" onmouseover="InsertDiv(this)">six 6</div> <div class="itemCss" onmouseover="InsertDiv(this)">seven 7</div> <div class="itemCss" onmouseover="InsertDiv(this)">eight 8</div> 网管下载dl.bitscn.com <div class="itemCss" onmouseover="InsertDiv(this)">nine 9</div> <div class="itemCss" onmouseover="InsertDiv(this)">ten 10</div> </div> <script language="javascript"> <!-- var obj,obj2; //引发事件对象 网管u家u.bitscn@com
var IsDrag=false; //是否抓起 网管网www_bitscn_com y=0;//event.offsetY; obj.style.position='absolute'; obj.style.posTop=event.y-y; obj.style.posLeft=event.x-x; IsDrag=true; } function MoveIt() { //window.status = event.x+"|"+event.y+"|"+IsDrag+"|"+x+"|"+y; if(IsDrag) { obj.style.posTop=event.y-y; obj.style.posLeft=event.x-x; } } function Release() { IsDrag=false; NullDiv.style.display='none'; obj.style.position=''; rootNode.insertBefore(obj,obj2); } function InsertDiv(o) { if(IsDrag) { obj2=o; NullDiv.style.display=''; 网管u家u.bitscn@com NullDiv.style.height='18'; NullDiv.style.width='100'; rootNode.insertBefore(NullDiv,obj2); } } //--> </script> </body> </html> 网管联盟bitsCN_com |
|
0
|
评论加载中…