简单的jquery拖拽排序效果
上篇⽂章写了简单的跟随⿏标移动效果。这个拖拽排序的效果的区别在于:运⽤了插⼊insertBefore 和 insertAfter 的⽅法步骤:
1.实现随⿏标移动的效果;
2.初始化⼀个元素及其坐标;
3.拖拽对象的最后坐标,与元素的坐标进⾏计算和判断来确定要插⼊的⽬标元素;
4.⽤insertBefore ⽅法插⼊到⽬标元素的前⾯
具体代码如下:
1<!DOCTYPE HTML>
2<html>
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
5<title>测试的拖拽功能</title>
6<style type="text/css">
7body, div { margin: 0; paading: 0; font-size: 12px;}
8body { width: 960px; margin: 0 auto;}
9ul, li { margin: 0; padding: 0; list-style: none;}
10.clear { clear: both; width: 1px; height: 0px; line-height: 0px; font-size: 1px;}
11
12.box { width: 600px; height: auto; margin: 25px 0 0 0; padding: 5px; border: 1px solid #f00;}
13.main { position: static; width: 600px; height: 80px; margin-bottom: 5px; border: 1px solid blue; background: #ccc;}
14.maindash { position: absolute; width: 600px; height: 80px; margin-bottom: 5px; border: 1px dashed blue; background: #ececec; opacity: 0.7;} 15
16.hide { width: 600px; height: 80px; margin-bottom: 5px;}
17.dash { position: sta;tic; width: 600px; height: 80px; margin-bottom: 5px; border: 1px dashed #f00;};
18</style>
19<script type="text/javascript" src="jquery-1.6.1.min.js"></script>
20<script type="text/javascript">
21
22 $(document).ready( function () {
23
24var range = { x: 0, y: 0 };//⿏标元素偏移量
25var lastPos = { x: 0, y: 0, x1: 0, y1: 0 }; //拖拽对象的四个坐标
26var tarPos = { x: 0, y: 0, x1: 0, y1: 0 }; //⽬标元素对象的坐标初始化
27
28var theDiv = null, move = false;//拖拽对象拖拽状态
29var theDivId =0, theDivHeight = 0, theDivHalf = 0; tarFirstY = 0; //拖拽对象的索引、⾼度、的初始化。
30var tarDiv = null, tarFirst, tempDiv;  //要插⼊的⽬标元素的对象, 临时的虚线对象
31
32    $(".main").each(function(){
33        $(this).mousedown(function (event){
34//拖拽对象
35            theDiv = $(this);
36
37//⿏标元素相对偏移量
38            range.x = event.pageX - theDiv.offset().left;
39            range.y = event.pageY - theDiv.offset().top;
40
41            theDivId = theDiv.index();
42            theDivHeight = theDiv.height();
43            theDivHalf = theDivHeight/2;
44            move = true;
45
46            theDiv.attr("class","maindash");
47// 创建新元素插⼊拖拽元素之前的位置(虚线框)
48            $("<div class='dash'></div>").insertBefore(theDiv);
49
50        });
51    });
52
53    $(document).mousemove(function(event) {
54
55if (!move) return false;
56
57        lastPos.x = event.pageX - range.x;
58        lastPos.y = event.pageY - range.y;
59        lastPos.y1 = lastPos.y + theDivHeight;
60
61// 拖拽元素随⿏标移动
62        theDiv.css({left: lastPos.x + 'px',top: lastPos.y + 'px'});
63// 拖拽元素随⿏标移动查插⼊⽬标元素
64
65var  $main = $('.main'); // 局部变量:按照重新排列过的顺序再次获取各个元素的坐标,
66        tempDiv = $(".dash"); //获得临时虚线框的对象
67
68        $main.each(function () {
69            tarDiv = $(this);
70            tarPos.x = tarDiv.offset().left;
71            tarPos.y = tarDiv.offset().top;
72            tarPos.y1 = tarPos.y + tarDiv.height()/2;
73
74            tarFirst = $main.eq(0); // 获得第⼀个元素
75            tarFirstY = tarFirst.offset().top + theDivHalf ; // 第⼀个元素对象的中⼼纵坐标 76
77//拖拽对象移动到第⼀个位置
78if (lastPos.y <= tarFirstY) {
79                    tempDiv.insertBefore(tarFirst);
80            }
81//判断要插⼊⽬标元素的坐标后,直接插⼊
82if (lastPos.y >= tarPos.y - theDivHalf && lastPos.y1 >= tarPos.y1 ) {
83                tempDiv.insertAfter(tarDiv);
84            }
85
86        });
87
88    }).mouseup(function(event) {
89
90        theDiv.insertBefore(tempDiv);  // 拖拽元素插⼊到虚线div的位置上
91        theDiv.attr("class", "main"); //恢复对象的初始样式
92
93        $('.dash').remove(); // 删除新建的虚线div
94        move=false;
95
96    });
jquery翻书效果
97
98 });
99
100
101</script>
102</head>
103
104<body>
105<div class="box" id="box">
106<div class="main" id="main0">div1</div>
107<div class="main" id="main1">div2</div>
108<div class="main" id="main2">div3</div>
109<div class="main" id="main3">div4</div>
110<div class="main" id="main4">div5</div>
111</div>
112</body>
113</html>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。