droll.js
17.3 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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
/**
* 支持无缝滚动
* 支持外部按钮控制滚动
*
*/
define( 'droll', function( require, exports, module ) {
var droll = function( target, options ) {
this.autoTimer = null;
this.target = target;
this.opt = {
// *required
// 每次移动的步长
step : null,
// *required
// 每次滚动项个数
moveNum : null,
//是否适应响应式
Media :false,
// 索引按钮的事件触发方式
eventType : "click",
// 默认水平方向滚动
isHori : true,
index : 0,
// 自动播放
auto : false,
// 1: roll
// 2: fade
effect : '1',
// 自动播放的间隔时间
autoDelay : 5000,
// 滚动速度,该值越低速度越快
speed : 500,
//渐入速度
fadeSpeed : 400,
// 方向按钮是否显示
dirButton : true,
// 索引按钮的列表是否显示
indexButton : false,
//索引数字是否显示
showNum : true,
// 是否切换 循环翻动效果
isCycle : true,
// 触发关联事件的按钮
// 用户可以在元素外部自定义多个可以触发滚动功能的元素列表
// *该按钮在loop 状态下不会启用
relaBtns : null,
listCurClass: "pdo-droll_list_current",
// 当前展示的索引项样式
ibtnCurClass: "pdo-droll_btn_current",
// 按钮不可点击样式
lockedClass : "pdo-droll_btn_locked",
prevHtml : "<",
nextHtml : ">",
// 滚动列表是否无限循环
loop : true,
// 列表项的外容器选择器
outerSelector : "ul",
// 列表项选择器
itemsSelector : "li",
// 只有鼠标覆盖到相关元素上按钮才会显示
btnHoverActive : false,
onFinished : function( target, inview_elems ) {},
onBeforeInView : function( target, inview_elems ) {},
layoutWidth : null,
layoutHeight : null
};
$.extend( this.opt, options );
// 滚动项的个数
this.LENGTH = 0;
// 动画进行中不再继续执行动画
this.LOCKED = false;
// 当前索引
this.I = this.opt.index;
// 上次点击的按钮索引
this.PREVI = this.opt.index;
this.init();
}
droll.prototype = {
init: function() {
var _this = this;
this.LENGTH = $( this.target ).find( this.opt.outerSelector ).find( this.opt.itemsSelector ).length;
if( this.LENGTH <= this.opt.moveNum ) {
this.opt.loop = false;
}
this.printWrapper();
this.setParams();
this.bindEvents();
this.setListState();
this.setDirBtnState();
this.setIndexBtnState( this.opt.index );
if( this.LENGTH <= this.opt.moveNum && !this.opt.Media ) {
this.opt.onBeforeInView.call( this.target, $( this.target ).find( this.opt.outerSelector ).find( this.opt.itemsSelector ) );
return;
}
// 如果第一个展示的索引项不是第一个则进行一次移动
if( this.opt.index !== 0 ) {
this.move();
} else {
this.opt.onBeforeInView.call( this.target, this.getInViewList() );
}
// 渐隐渐现效果
if( this.opt.effect == 2 ) {
$( this.target ).find( this.opt.itemsSelector ).each(function() {
$( this ).css({
'left' : 0,
'top' : 0,
'position' : 'absolute'
}).hide();
});
this.move();
}
if( this.opt.auto ) {
this.auto();
$( this.target ).hover(function() {
clearTimeout( _this.autoTimer );
}, function() {
_this.auto();
});
}
if( this.opt.Media ){
var _itemsSelector = $( _this.target ).find( _this.opt.outerSelector ).find( _this.opt.itemsSelector );
var _ml = parseFloat( $( _itemsSelector ).css("marginLeft") ) , _mr = parseFloat( $( _itemsSelector ).css("marginRight") ) , _cm = ( _ml + _mr ) / 2;
$( window ).resize( function(){
_this.opt.step = parseFloat( $( _itemsSelector ).outerWidth() ) + _ml + _mr;
$( _this.target ).find( '.pdo-droll_layout , .pdo-droll' ).css({
'width': _this.opt.step*_this.opt.moveNum
});
_this.setParams();
_this.move( 1 * _this.opt.moveNum );
});
}
},
/**
* 输出滚动元素的外层容器以及按钮
*
*/
printWrapper: function() {
// 索引按钮
var numlists = '', elem = $( this.target );
var style = this.opt.isHori ?
// 水平滚动
'width: '+ ( this.opt.layoutWidth || this.opt.step * this.opt.moveNum ) +'px; height: '+ ( this.opt.layoutHeight || $( this.target ).outerHeight() ) +'px;':
// 垂直方向
'height: '+ ( this.opt.layoutHeight || this.opt.step * this.opt.moveNum ) +'px; width: '+ ( this.opt.layoutWidth || $( this.target ).outerWidth() ) +'px;';
if( this.opt.effect == 2 ){
style = 'width:100%;height:100%;';
}
for( var i = 0; i < this.LENGTH / this.opt.moveNum; i ++ ) {
var _i = this.opt.showNum ? i + 1 : ' ' ;
numlists += '<a href="javascript:void(0);">'+ _i +'</a>';
}
// 添加位移容易的外层容器
elem.find( this.opt.outerSelector ).wrap( '<div style="'+ style +'z-index:1;" class="pdo-droll"></div>' );
// 添加最外层容器
elem.find( ".pdo-droll" ).wrap( '<div style="'+ style +'" class="pdo-droll_layout"></div>' );
// 添加
if( this.LENGTH > this.opt.moveNum ){
elem.find( ".pdo-droll_layout" ).append( '\
<div class="pdo-droll_dirbutton" style="display:none;">\
<a class="pdo-droll_prev" href="javascript:void(0);"><span><span></a>\
<a class="pdo-droll_next" href="javascript:void(0);"><span><span></a>\
</div>\
<div class="pdo-droll_numbutton" style="display:none;">'+ numlists +'</div>\
');
}
},
/**
* 设置一些内部将要使用的参数以及按钮列表是否显示
*
*/
setParams: function() {
var elem = $( this.target );
this.ELEM = {
outer : elem.find( "pdo-droll" ),
cont : elem.find( this.opt.outerSelector ),
dirbtn : elem.find( "div.pdo-droll_dirbutton" ),
numbtn : elem.find( "div.pdo-droll_numbutton" ),
prev : elem.find( "a.pdo-droll_prev" ),
next : elem.find( "a.pdo-droll_next" )
};
if( this.opt.dirButton && !this.opt.btnHoverActive ) {
this.ELEM.dirbtn.fadeIn( 200 );
}
if( this.opt.indexButton && this.LENGTH > this.opt.moveNum ) {
this.ELEM.numbtn.fadeIn( 200 );
}
var size = this.opt.step * this.ELEM.cont.find( this.opt.itemsSelector ).length;
if( this.opt.effect == 2 ) {
size = '100%';
}
this.ELEM.cont[ this.opt.isHori ? "width" : "height" ]( size ).css( "position", "absolute" );
},
/**
* 绑定事件
*
*/
bindEvents: function() {
var _this = this;
this.ELEM.prev.click(function() {
_this.move( -1 * _this.opt.moveNum );
});
this.ELEM.next.click(function() {
_this.move( 1 * _this.opt.moveNum );
});
// 只有当鼠标覆盖元素对象时,按钮才显示
if( this.opt.btnHoverActive ) {
this.target.ha_stimer = null;
this.target.ha_htimer = null;
$( this.target ).hover(
function() {
clearTimeout( _this.target.ha_stimer );
clearTimeout( _this.target.ha_htimer );
_this.target.ha_stimer = setTimeout(function() {
_this.ELEM.dirbtn.fadeIn( 120 );
}, 100 );
},
function() {
clearTimeout( _this.target.ha_stimer );
clearTimeout( _this.target.ha_htimer );
_this.target.ha_htimer = setTimeout(function() {
_this.ELEM.dirbtn.fadeOut( 120 );
}, 100 );
}
);
this.ELEM.dirbtn.mouseover(function() {
clearTimeout( _this.target.ha_stimer );
clearTimeout( _this.target.ha_htimer );
});
}
// 索引按钮
//if( !_this.opt.loop ) {
this.ELEM.numbtn.find( "a" )[ this.opt.eventType ](function() {
_this.move( $( this ).index() * _this.opt.moveNum - _this.I );
});
//}
// 存在关联按钮
if( this.opt.relaBtns ) {
this.opt.relaBtns[ this.opt.eventType ](function() {
var orgBtns = _this.ELEM.numbtn.find( "a" ).eq( $( this ).index() );
orgBtns.triggerHandler( _this.opt.eventType );
});
}
},
/**
* 移动函数
*
* @param {Number} move_num 移动的相对数量,负数则向前移动
*
*/
move: function( move_num, cur_ibtn_index ) {
if( this.LENGTH <= this.opt.moveNum ) {
return;
}
if( this.opt.effect == 1 && this.LOCKED ) {
return;
}
this.LOCKED = true;
var _this = this, gs = this.getStep( move_num, cur_ibtn_index ),
step =
// 滚动效果使用 step
this.opt.effect == 1 ?
gs.step:
gs.toindex;
if( this.opt.effect == 1 && gs.step === null ) {
this.LOCKED = false;
return;
}
this.opt.onBeforeInView.call( this.target, this.getInViewList() );
this.setListState();
this.setDirBtnState();
// this.setIndexBtnState( Math.abs( step / this.opt.step ) );
this.setIndexBtnState( Math.abs( gs.toindex ) );
// roll
if( this.opt.effect == 1 ) {
var move_config = {};
move_config[ this.opt.isHori ? "left": "top" ] = step;
this.ELEM.cont.animate( move_config, this.opt.speed, function() {
_this.LOCKED = false;
_this.opt.onFinished.call( _this.target, _this.getInViewList() );
});
}
// fade
if( this.opt.effect == 2 ) {
var items = $( this.target ).find( this.opt.itemsSelector );
items.eq( gs.toindex ).siblings().fadeOut( 100 );
items.eq( gs.toindex ).fadeIn( this.opt.fadeSpeed , function() {
_this.opt.onFinished.call( _this.target, _this.getInViewList() );
});
}
},
/**
* 移动数量,该参数有方向
*
* @param {Number} move_num
*
*/
getStep: function( move_num ) {
var cycle = this.opt.isCycle;
if( move_num == undefined ) {
this.I = 0;
return {
toindex: 0,
step: null
}
}
var range = [ 0, this.LENGTH - this.opt.moveNum ];
// 移动的个数 + 当前的索引
var to_index = move_num + this.I;
// 到达最大边界
if( to_index > range[1] ) {
if( this.opt.loop ) {
if( to_index < this.LENGTH ) {
to_index = range[1];
} else {
cycle ? to_index = 0 : to_index = range[1];
}
} else {
to_index = range[1];
}
}
// 到达最小边界
if( to_index < range[0] ) {
if( this.opt.loop ) {
if( to_index + this.LENGTH > range[1] ) {
to_index = 0;
} else {
cycle ? to_index = to_index + this.LENGTH : to_index = 0;
}
} else {
to_index = 0;
}
}
this.I = to_index;
return {
toindex : to_index,
step : to_index * this.opt.step * -1
};
},
/**
* 自动播放
*
*/
auto: function() {
clearTimeout( this.autoTimer );
var _this = this;
this.autoTimer = setTimeout(function() {
_this.move( 1 * _this.opt.moveNum );
_this.auto();
}, this.opt.autoDelay );
},
/**
* 获取在显示区域内的元素列表
*
*/
getInViewList: function() {
var arr = [];
for( var i = this.I; i < this.I + this.opt.moveNum; i ++ ) {
arr.push( this.ELEM.cont.find( this.opt.itemsSelector ).eq( i )[0] );
}
return arr;
},
/**
* 设置当前项
*
*/
setListState: function() {
// this.ELEM.cont.find( this.opt.itemsSelector ).removeClass( this.opt.listCurClass );
// this.ELEM.cont.find( this.opt.itemsSelector ).eq( this.I ).addClass( this.opt.listCurClass );
},
/**
* 设置方向按钮状态
*
*/
setDirBtnState: function() {
if( this.opt.loop ) {
return;
}
this.ELEM.prev.removeClass( this.opt.lockedClass );
this.ELEM.next.removeClass( this.opt.lockedClass );
if( this.I <= 0 ) {
this.ELEM.prev.addClass( this.opt.lockedClass );
}
if( this.I >= this.LENGTH - this.opt.moveNum ) {
this.ELEM.next.addClass( this.opt.lockedClass );
}
},
/**
* 设置索引按钮样式
*
* @param {Object} index
*
*/
setIndexBtnState: function( index ) {
if( this.opt.loop ) {
//return;
}
// 按钮上的真实索引位
var realIndex = Math.round( index / this.opt.moveNum ), orgBtns = this.ELEM.numbtn.find( "a" );
orgBtns.removeClass( this.opt.ibtnCurClass );
orgBtns.eq( realIndex ).addClass( this.opt.ibtnCurClass );
// 存在关联按钮
if( this.opt.relaBtns ) {
this.opt.relaBtns.removeClass( this.opt.ibtnCurClass );
this.opt.relaBtns.eq( realIndex ).addClass( this.opt.ibtnCurClass );
}
}
};
return droll;
});