源码网,源码论坛,源码之家,商业源码,游戏源码下载,discuz插件,棋牌源码下载,精品源码论坛

 找回密码
 立即注册
查看: 69|回复: 23

[JavaScript] 基于jquery完美拖拽,可返回拖动轨迹

[复制链接]

7万

主题

861

回帖

32万

积分

论坛元老

Rank: 8Rank: 8

积分
329525
发表于 2012-3-29 00:51:49 | 显示全部楼层 |阅读模式
基于jquery完美拖拽,可返回拖动轨迹 用JQ实现,话不多说,直接上码 复制代码 代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>完美拖拽</title>
<style type="text/css">
html, body {
overflow:hidden;
}
body, div, h2, p {
margin:0;
padding:0;
}
body {
color:#fff;
background:#000;
font:12px/2 Arial;
}
p {
padding:0 10px;
margin-top:10px;
}
span {
color:#ff0;
padding-left:5px;
}
#box {
position:absolute;
width:300px;
height:150px;
background:#333;
border:2px solid #ccc;
top:150px;
left:400px;
margin:0;
}
#box h2 {
height:25px;
cursor:move;
background:#222;
border-bottom:2px solid #ccc;
text-align:right;
padding:0 10px;
}
#box h2 a {
color:#fff;
font:12px/25px Arial;
text-decoration:none;
outline:none;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
var bDrag = false;
var _x,_y;
var $box=$("#box")
var aPos = [{
x: $("#box").offset().left,
y: $("#box").offset().top
}];
$("span:eq(1)").text(aPos[0].y);
$("span:eq(2)").text(aPos[0].x);
$("#box h2:first").mousedown(function(event){
var e=event || window.event;
bDrag = true;
_x=e.pageX-$box.position().left;
_y=e.pageY-$box.position().top;
return false
})
$(document).mousemove(function(event){
if(!bDrag) return false;
var e=event || window.event;
var x=e.pageX-_x;
var y=e.pageY-_y;
var maxL = $(document).width() - $box.outerWidth();
var maxT = $(document).height() - $box.outerHeight();
x = x < 0 ? 0: x;
x = x > maxL ? maxL: x;
y = y < 0 ? 0: y;
y = y > maxT ? maxT: y;
$box.css({left:x,top:y});
aPos.push({
x: x,
y: y
});
status()
return false
}).mouseup(function(){
bDrag = false;
status()
return false
})
$("#box h2:first a").click(function(){
if (aPos.length == 1) return;
var timer = setInterval(function() {
var oPos = aPos.pop();
oPos ? ($box.css({left : oPos.x + "px", top : oPos.y + "px"})) : clearInterval(timer)
status();
},30);
}).mousedown(function(){return false})
function status() {
$("#box span:eq(0)").text(bDrag);
$("#box span:eq(1)").text($box.position().top);
$("#box span:eq(2)").text($box.position().left);
}
status()
})
</script>
</head>

<body>
<div id="box">
<h2><a href="javascript:;">点击回放拖动轨迹</a></h2>
<p><strong>Drag:</strong><span></span></p>
<p><strong>top:</strong><span></span></p>
<p><strong>left:</strong><span></span></p>
</div>
</body>
</html>
回复

使用道具 举报

0

主题

1万

回帖

0

积分

中级会员

Rank: 3Rank: 3

积分
0
发表于 2022-11-29 12:03:53 | 显示全部楼层
抽根烟,下来看看再说
回复 支持 反对

使用道具 举报

2

主题

2万

回帖

473

积分

中级会员

Rank: 3Rank: 3

积分
473
发表于 2022-12-25 04:28:27 | 显示全部楼层
的沙发水电费水电费
回复 支持 反对

使用道具 举报

1

主题

2万

回帖

55

积分

注册会员

Rank: 2

积分
55
发表于 2023-12-1 22:53:29 | 显示全部楼层
谢谢下载来看看
回复 支持 反对

使用道具 举报

2

主题

1万

回帖

146

积分

注册会员

Rank: 2

积分
146
发表于 2024-5-6 18:29:43 | 显示全部楼层
飞飞飞飞飞飞飞飞飞飞飞飞飞
回复 支持 反对

使用道具 举报

2

主题

2万

回帖

499

积分

中级会员

Rank: 3Rank: 3

积分
499
发表于 2024-5-9 23:19:55 | 显示全部楼层
1312315458748777
回复 支持 反对

使用道具 举报

4

主题

1万

回帖

60

积分

注册会员

Rank: 2

积分
60
发表于 2024-5-14 05:02:10 | 显示全部楼层
啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦
回复 支持 反对

使用道具 举报

0

主题

1万

回帖

0

积分

中级会员

Rank: 3Rank: 3

积分
0
发表于 2024-7-13 19:33:05 | 显示全部楼层
刷刷刷刷刷刷刷刷刷刷刷刷刷刷刷
回复 支持 反对

使用道具 举报

1

主题

1万

回帖

51

积分

注册会员

Rank: 2

积分
51
发表于 2024-8-7 05:52:25 | 显示全部楼层
终于找到了,我擦
回复 支持 反对

使用道具 举报

4

主题

2万

回帖

58

积分

注册会员

Rank: 2

积分
58
发表于 2024-8-9 02:44:18 | 显示全部楼层
可以,看卡巴
回复 支持 反对

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

手机版|小黑屋|网站地图|源码论坛 ( 海外版 )

GMT+8, 2025-1-23 04:09 , Processed in 0.082550 second(s), 26 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表