博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
客户端拖动控件封装(让拖动变得更简单)
阅读量:5970 次
发布时间:2019-06-19

本文共 3696 字,大约阅读时间需要 12 分钟。

在一些交互性强的前端页面中,经常用到物件拖动,因此封装了一下拖动控件的代码。

使用时只需绑定htc拖动控件,然后设定一些可拖动控件(其position需设为absolute)的canMove属性(为1表示可以拖动),layernum属性(拖动时,移动哪一个父元件)

None.gif
<!--
None.gifAuthor:        Kw.Tsou
None.gifDate:        2005/11/26
None.gifContent:    为页面上的元件提供自由移动的功能
None.gifUseMark:    在body(或其它容器)上behavior此物件,然后在需要移动的物件上设置canMove = "1" ,如果不是移动本身,则可以设置layernum指向其父元素.(注意:该移动的物件的position必须为absolute)
None.gif
-->
None.gif
<
PUBLIC:COMPONENT
>
None.gif    
<
PUBLIC:ATTACH 
EVENT
="onmousedown"
 ONEVENT
="move_eDown()"
 
/>
None.gif    
<
PUBLIC:ATTACH 
EVENT
="onmouseup"
 ONEVENT
="move_eUp()"
 
/>
None.gif    
<
PUBLIC:ATTACH 
EVENT
="onmousemove"
 ONEVENT
="move_eMove()"
 
/>
None.gif    
<
PUBLIC:EVENT 
ID
="moveevent"
  NAME
="ontagmove"
/>
None.gif
</
PUBLIC:COMPONENT
>
ExpandedBlockStart.gifContractedBlock.gif
<
SCRIPT 
Language
="JavaScript"
>
dot.gif
InBlock.gif    
var current = null;
InBlock.gif    
var offsetX = 0;
InBlock.gif    
var offsetY = 0;
InBlock.gif    
var dragging = false;
InBlock.gif    
var startedDragging = false;
InBlock.gif    
var ismove = false;
InBlock.gif    
InBlock.gif    
function setCurrent(w)
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        current 
= w;
ExpandedSubBlockStart.gifContractedSubBlock.gif        
if(current.style.position!="absolute")dot.gif{
InBlock.gif            alert(
"可移动物件的position必须为absolute,才可更好地移动");
InBlock.gif            
return;
ExpandedSubBlockEnd.gif        }
InBlock.gif        
var ex = event.clientX;
InBlock.gif        
var ey = event.clientY;
InBlock.gif        offsetX 
= event.x - current.offsetLeft;
InBlock.gif        offsetY 
= event.y - current.offsetTop;
InBlock.gif        dragging 
= true;
InBlock.gif        ismove 
= false;
ExpandedSubBlockEnd.gif    }
InBlock.gif
InBlock.gif    
function moveCurrent()
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        
if (!dragging || !current)
InBlock.gif            
return;
InBlock.gif            
InBlock.gif        
if (event.button == 0)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            releaseCurrent();
InBlock.gif            
return;
ExpandedSubBlockEnd.gif        }
InBlock.gif          
InBlock.gif        
if (!startedDragging)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            startedDragging 
= true;
ExpandedSubBlockEnd.gif        }
InBlock.gif          
InBlock.gif        
var ex = event.clientX;
InBlock.gif        
var ey = event.clientY;
InBlock.gif        
var newl = ex - offsetX;
InBlock.gif        
var newt = ey - offsetY
ExpandedSubBlockStart.gifContractedSubBlock.gif        
if(newl!=current.style.pixelLeft||newt!=current.style.pixelTop)dot.gif{
InBlock.gif            current.style.pixelLeft 
= ex - offsetX;
InBlock.gif            current.style.pixelTop 
= ey - offsetY;
InBlock.gif            ismove 
= true;
ExpandedSubBlockEnd.gif        }
InBlock.gif        
InBlock.gif        window.event.returnValue 
= false;
InBlock.gif        window.event.cancelBubble 
= true;
InBlock.gif        
ExpandedSubBlockEnd.gif    }
InBlock.gif
InBlock.gif    
function releaseCurrent()
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        current
=null;
InBlock.gif        dragging 
= false;
InBlock.gif        startedDragging 
= false;
InBlock.gif        window.event.returnValue 
= false;
InBlock.gif        window.event.cancelBubble 
= true;
ExpandedSubBlockEnd.gif    }
  
InBlock.gif
InBlock.gif    
//取得移动对象(如只能拖动标题栏进行移动)
ExpandedSubBlockStart.gifContractedSubBlock.gif
    function getOpreateElement(el)dot.gif{
InBlock.gif        
//debug();
InBlock.gif
        var ret = el;
InBlock.gif        
var layernum = 0;
InBlock.gif        
if(el.layernum)
InBlock.gif            layernum 
= parseInt(el.layernum);
InBlock.gif        
for(var i=0;i<layernum;i++)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            ret 
= ret.parentElement;
ExpandedSubBlockEnd.gif        }
InBlock.gif        
return ret;
InBlock.gif
ExpandedSubBlockEnd.gif    }
InBlock.gif
InBlock.gif    
function move_eDown()
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        
var e = window.event;
InBlock.gif        
var el = e.srcElement;
ExpandedSubBlockStart.gifContractedSubBlock.gif        
if(el.canMove=="1")dot.gif{
InBlock.gif            el 
= getOpreateElement(el);
ExpandedSubBlockStart.gifContractedSubBlock.gif            
if(!el.isLock)dot.gif{
InBlock.gif                
if(!(el.isResize=="1"&&el.runtimeStyle.cursor.indexOf("resize")>0))
InBlock.gif                    setCurrent(el);
ExpandedSubBlockEnd.gif            }
ExpandedSubBlockEnd.gif        }
ExpandedSubBlockEnd.gif    }
InBlock.gif
InBlock.gif    
function move_eUp()
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        
var tmp =null;
InBlock.gif        
if(current!=null)
InBlock.gif            tmp 
= current;
InBlock.gif        releaseCurrent();
ExpandedSubBlockStart.gifContractedSubBlock.gif        
if(tmp!=null&&ismove)dot.gif{
InBlock.gif            
InBlock.gif            
var evt = createEventObject();
InBlock.gif            evt.src 
= tmp;
ExpandedSubBlockStart.gifContractedSubBlock.gif            
try dot.gif{ moveevent.fire(evt); } catch(e) dot.gif{};
ExpandedSubBlockEnd.gif        }
InBlock.gif        ismove 
= false;
InBlock.gif        tmp 
= null;
InBlock.gif        
ExpandedSubBlockEnd.gif    }
InBlock.gif
InBlock.gif    
function move_eMove()
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        moveCurrent();
ExpandedSubBlockEnd.gif    }
ExpandedBlockEnd.gif
None.gif
</
SCRIPT
>
None.gif
None.gif
None.gif
<
html
>
None.gif
<
head
>
None.gif
<
title
>
什么都可以拖动
</
title
>
ExpandedBlockStart.gifContractedBlock.gif
<
style
>
dot.gif
ExpandedSubBlockStart.gifContractedSubBlock.gifbody,div,td,font
{
dot.gif}
{
font:menu;}
ExpandedSubBlockStart.gifContractedSubBlock.gifdiv,td
{
dot.gif}
{
text-align:center}
None.gif
</
style
>
None.gif
</
head
>
None.gif
<
body 
style
="margin:0px"
>
None.gif
<
div 
ontagmove
="window.status=' left:' + window.event.src.offsetLeft + ' top:' + window.event.src.offsetTop"
 style
="margin:3px;position:absolute;overflow:hidden;behavior:url(BlogMoveAble.htc);border:1px solid gray;width:90%;height:90%;background-color:#efefef"
>
None.gif    
<
div 
canMove 
= "1"
 style
="background-color:gray;border:1px solid red;cursor:move;top:20px;left:20px;position:absolute;width:100px;height:100px;"
>
None.gif        这是一个div
None.gif    
</
div
>
None.gif    
<
div  
style
="background-color:#e1e1e1;border:1px solid blue;;top:120px;left:120px;position:absolute;width:180px;height:120px;"
>
None.gif        
<
div 
style
="height:30px;border:1px solid white;background-color:white;color:black;cursor:move"
 canMove
="1"
 layernum
="1"
>
只有标题可以拖动
</
div
>
None.gif        这是一个div
None.gif    
</
div
>
None.gif    
<
table 
border
="1"
 bordercolor
="green"
 style
="width:50%;height:50%;position:absolute"
>
None.gif        
<
tr
>
None.gif            
<
td 
canMove
="1"
 layernum
="3"
 colspan
="2"
 style
="cursor:move;background-color:blue;color:white"
>
这是表格的标题行
</
td
>
None.gif        
</
tr
>
None.gif        
<
tr
>
None.gif            
<
td
>
1
</
td
>
None.gif            
<
td
>
2
</
td
>
None.gif        
</
tr
>
None.gif        
<
tr
>
None.gif            
<
td
>
3
</
td
>
None.gif            
<
td
>
4
</
td
>
None.gif        
</
tr
>
None.gif    
</
table
>
None.gif
</
div
>
None.gif
</
body
>
None.gif
</
html
>
None.gif

预览:

下载:

你可能感兴趣的文章
Python单元测试框架Pyunit 的使用
查看>>
基于linux服务器的性能分析与优化
查看>>
Cocos2d-xna : 横版战略游戏开发实验5 TiledMap实现关卡地图
查看>>
LDAP 配置 ldap_bind: Invalid credentials (49)
查看>>
Windows 7 Natvie VHD
查看>>
Python JS Jquery Json 转换关系
查看>>
重启jboss出现问题:端口被占用
查看>>
SpringMVC下的基本配置
查看>>
RedHat/CentOS系统信息查看命令大全
查看>>
Apache用户认证、域名跳转、Apache访问日志
查看>>
程序注释应该注意的地方
查看>>
tomcat+SSH中遇到中文乱码的解决方法
查看>>
用IKVMC将jar转成dll供c#调用
查看>>
Exchange Server 2013 DAG高可用部署(三)-服务器角色安装
查看>>
VMware 全虚拟打开
查看>>
windows 下搭建python虚拟环境
查看>>
[八省联考2018]劈配
查看>>
java中的枚举类
查看>>
IE Web 开发支持将迁移到 StackOverflow
查看>>
SQLite教程
查看>>