drag.js
6.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
/**
* === UI ===
*
* 元素拖拽组件
*
*/
define( 'drag', [ 'event' ], function( require, exports ) {
var E = require( 'event' );
var drag = function( target, options ) {
this.dragger = target;
this.opt = {
// 实际要移动的元素
// 如果使用该参数,target 参数只提供拖拽功能,实际改变位置的元素为该元素
mover : null,
range : null,
xLocked : false,
yLocked : false,
// 是否超出范围的部分 样式上 隐藏掉
outHidden : true,
onStart : function() {},
// 修改指针环境为当前 drag 环境,返回两个参数当前 left, top 的相对位移
onStep : function() {}
};
$.extend( this.opt, options );
this.Init();
};
drag.prototype = {
name: 'pack_drag',
Init: function() {
// 进行移动的始终为 mover 这个对象
// dragger 对象只提供事件
this.mover = $( this.opt.mover || this.dragger );
this.SetRange();
this.mover.addClass( this.name + '_mover' ).css( 'position', 'absolute' );
$( this.dragger ).addClass( this.name + '_dragger' );
this.Bind();
},
// 设置区间范围
SetRange: function() {
var rElem = $( this.opt.range );
if( !this.opt.range || !rElem.length ) {
return;
}
if( rElem.css( "position" ) ) {
//rElem.css({ "overflow": "hidden" });
} else {
rElem.css({ "position": "relative"/*, "overflow": "hidden"*/ });
}
if( this.opt.outHidden ) {
rElem.css({ "overflow": "hidden" });
}
this._range = {
x: [ 0, rElem.innerWidth() ],
y: [ 0, rElem.innerHeight() ]
};
},
// 绑定拖拽事件,获取拖拽的间隔时间,之后调用移动方法
Bind: function() {
var _this = this;
this._startHandler = function( event, target ) {
// 屏蔽右键
if( event.button === 2 ) {
return;
}
return _this.DragStart( event, target );
};
this._stopHandler = function( event, target ) {
return _this.DragStop();
};
this._folowHandler = function( event, target ) {
return _this.Follow( event, target );
};
this._bind = function() {
$( document ).bind( 'mouseup.' + _this.name, function( event, target ) { _this._stopHandler( event, target ) });
$( document ).bind( 'mousemove.' + _this.name, function( event, target ) { _this._folowHandler( event, target ) });
};
this._unbind = function() {
$( document ).unbind( 'mouseup.' + _this.name );
$( document ).unbind( 'mousemove.' + _this.name );
};
// Dragger event
$( this.dragger ).bind( 'mousedown.' + this.name, function( event, target ) {
_this._startHandler( event, target );
this.onselectstart = function() { return false; };
return false;
});
// PUBLIC API
// 为该元素提供外部控制接口
// 直接为该元素属性附加接口方法
this.dragger.__DRAG = {
STOP: function() {
_this.DragStop();
}
};
},
// 事件开启
DragStart: function( event, target ) {
//this._stop = false;
// 记录点击时鼠标位置
this.mousePoint = {
left: E.x( event ),
top : E.y( event )
};
// 记录点击时位移元素相对位置
this.startPoint = {
left: this.mover.position().left,
top : this.mover.position().top
};
this.mover.removeClass( this.name + '_drag_move' + ' ' + this.name + '_drag_stop' );
this.mover.addClass( this.name + '_drag_start' );
this._bind();
this.opt.onStart.call( this.mover[0], this.startPoint.left, this.startPoint.top, $( this.opt.range ) );
},
// 事件关闭
DragStop: function() {
this.mover.removeClass( this.name + '_drag_start' + ' ' + this.name + '_drag_move' );
this.mover.addClass( this.name + '_drag_stop' );
this._unbind();
},
// 元素跟随鼠标进行移动
Follow: function( event, target ) {
this.mover.removeClass( this.name + '_drag_start' );
this.mover.addClass( this.name + '_drag_move' );
var step = this.GetMoveStep( event );
// 如果存在范围则对 step 进行修正
step = this.StepFix( step );
this.mover.css( step );
this.OnStepHandler();
},
// 如果存在范围则对 step 进行修正
StepFix: function( step ) {
var rElem = $( this.opt.range ), w = this.mover.outerWidth( true ), h = this.mover.outerHeight( true );
if( !this.opt.range || !rElem.length ) {
return step;
}
// 拖动的元素横向实际尺寸大于范围尺寸
if( this._range.x[0] + this._range.x[1] < w ) {
this._xSmall = true;
} else {
this._xSmall = false;
}
// 拖动的元素横向实际尺寸大于范围尺寸
if( this._range.y[0] + this._range.y[1] < h ) {
this._ySmall = true;
} else {
this._ySmall = false;
}
// 横向上的修正
if( !this._xSmall ) {
// 左侧边界值
if( step.left < this._range.x[0] ) {
step.left = this._range.x[0];
}
// 右侧边界值
if( step.left + w > this._range.x[1] ) {
step.left = this._range.x[1] - w;
}
}
// 拖动的元素实际尺寸大于范围尺寸
else {
// 左侧边界值
if( step.left > this._range.x[0] ) {
step.left = this._range.x[0];
}
// 右侧侧边界值
if( step.left < this._range.x[1] - w ) {
step.left = this._range.x[1] - w;
}
}
// 纵向上的修正
if( !this._ySmall ) {
// 顶部边界值
if( step.top < this._range.y[0] ) {
step.top = this._range.y[0]
}
// 底部边界值
if( step.top + h > this._range.y[1] ) {
step.top = this._range.y[1] - h;
}
} else {
// 顶部边界值
if( step.top > this._range.y[0] ) {
step.top = this._range.y[0];
}
// 底部边界值
if( step.top < this._range.y[1] - h ) {
step.top = this._range.y[1] - h;
}
}
return step;
},
// 获取当前位移
GetMoveStep: function( event, objectArr ) {
var step = {};
if( !this.opt.xLocked ) {
step.left = E.x( event ) - this.mousePoint.left + this.startPoint.left;
}
if( !this.opt.yLocked ) {
step.top = E.y( event ) - this.mousePoint.top + this.startPoint.top;
}
return step;
},
// 移动步长的回调
OnStepHandler: function() {
this.opt.onStep.call(
this.mover[0],
this.mover.position().left - this.startPoint.left || 0,
this.mover.position().top - this.startPoint.top || 0,
$( this.opt.range )
);
}
}
return drag;
});