-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathjquery-scrollable.js
More file actions
413 lines (338 loc) · 14 KB
/
Copy pathjquery-scrollable.js
File metadata and controls
413 lines (338 loc) · 14 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
/*!
* jquery.fn.scrollable
* @author ydr.me
* @version 1.0
*/
module.exports = function($){
"use strict";
var prefix = "jquery-scrollable____",
emptyFn = function () {},
defaults = {
// 列表选择器
listSelector: "li",
// 容器宽度,超过隐藏
width: "auto",
// 容器高度,超过隐藏
height: "auto",
// 滚动方向
direction: "top",
// 每次滚动的项目数量
// 如果为1,则每次滚动1个,暂停的时候会是某一个项目的结尾
// 如果为0,则无缝滚动,暂停的时候可能会是某一个项目的中间
scrollCount: 1,
// 延迟时间
delay: 2000,
// 动画时间,如果滚动数量为0,则滚动全部数量的动画时间
duration: 678,
// 是否自动播放
isAutoPlay: true,
// 是否鼠标悬停暂停
isHoverPause: true,
// 变化之前回调
// this => element
onbeforechange: emptyFn,
// 变化之后回调
// this => element
onafterchange: emptyFn
};
$.fn.scrollable = function (settings) {
var args = arguments;
return this.each(function () {
var $this = $(this),
data = $this.data(prefix),
options = $.extend({}, defaults, $.type(settings) === 'object' && settings);
if (!data) {
$this.data(prefix, (data = new Scrollable($this, options)));
data._init();
}
if ($.type(settings) === 'string' && Scrollable.prototype[settings]) data[settings]();
else if ($.type(settings) === 'number') data.to.apply(data, args);
});
};
$.fn.scrollable.defaults = defaults;
// 构造函数
function Scrollable(element, options) {
this.$element = $(element);
this.options = options;
}
Scrollable.prototype = {
/**
* 【私有】
* 初始化
* @version 1.1
*/
_init: function () {
var _this = this,
options = _this.options,
$element = _this.$element,
$content = $($element).children(options.listSelector),
count = $content.length;
if (!count || count < 2) return;
var contentWidth = $element.width(),
contentHeight = $element.height(),
$elementClone = $element.clone(true, true),
isHorizontal = options.direction === "left" || options.direction === "right",
$wrapper;
if (options.width === "auto") options.width = $element.width();
if (options.height === "auto") options.height = $element.height();
if (contentWidth * count <= options.width && isHorizontal || contentHeight * count <= options.height && !isHorizontal) return;
$element.wrap("<div>");
$wrapper = $element.parent();
$wrapper.css({
position: "relative",
overflow: "hidden",
width: options.width,
height: options.height
});
$element.wrap("<div>");
$animate = $element.parent();
$animate.css({
position: "absolute",
overflow: "hidden",
top: 0,
left: 0
});
$elementClone.insertAfter($element);
// 水平方向特殊处理
if (isHorizontal) {
_this.animateKey = "left";
$animate.css({
width: "99999%",
height: options.height
});
$element.add($elementClone).css("float", "left");
contentWidth = $element.outerWidth();
$animate.width(contentWidth * 2).height(options.height);
} else {
_this.animateKey = "top";
$animate.css({
width: options.width,
height: contentHeight * 2
});
}
_this.$animate = $animate;
// fps
_this.$list = $element.children("li");
_this.$elementClone = $elementClone;
_this.$listClone = $elementClone.children("li");
_this.count = _this.$list.length;
_this.perAnimateLeft = contentWidth * 30 / options.duration;
_this.perAnimateTop = contentHeight * 30 / options.duration;
_this.isMarquee = options.scrollCount === 0;
_this.animateLen = 0;
_this.showIndex = 0;
_this.isAnimating = 0;
_this.isHorizontal = isHorizontal;
_this.intervalId = 0;
_this.timeoutId = 0;
_this.contentWidth = contentWidth;
_this.contentHeight = contentHeight;
if (options.isAutoPlay) _this.play();
$wrapper.hover(function () {
_this.pause();
}, function () {
_this.pause();
if (options.isAutoPlay) _this.play();
});
},
/**
* 【私有】
* 运动
* @param {String} 类型 prev OR next
* @param {Function} 回调
* @version 1.1
*/
_run: function (type, callback) {
var _this = this,
options = _this.options,
$element = _this.$element;
if (_this.isAnimating) return;
var clonePosKey = _this.$elementClone.position()[_this.animateKey],
animateProperty = {},
$temp = _this.$list;
// 向上++
if ((type != "prev" && options.direction == "top") || (type == "prev" && options.direction == "bottom")) {
if (_this.isMarquee) {
if (_this.animateLen - _this.perAnimateTop <= -_this.contentHeight) {
_this.animateLen += _this.contentHeight;
}
_this.animateLen -= _this.perAnimateTop;
} else {
// 超过边界
if (_this.contentHeight + Math.floor(_this.animateLen) <= 0) {
_this.animateLen = _this.contentHeight + _this.animateLen;
_this.$animate.css("margin-" + _this.animateKey, _this.animateLen);
}
_this.showIndex += options.scrollCount;
if (_this.showIndex >= _this.count) {
_this.showIndex = (_this.showIndex + _this.count) % _this.count;
$temp = _this.$listClone;
}
_this.animateLen = -$temp.eq(_this.showIndex).position()[_this.animateKey];
}
}
// 向右--
else if ((type != "prev" && options.direction == "right") || (type == "prev" && options.direction == "left")) {
if (_this.isMarquee) {
if (_this.animateLen + _this.perAnimateLeft >= 0) {
_this.animateLen -= _this.contentWidth;
}
_this.animateLen += _this.perAnimateLeft;
} else {
_this.showIndex -= options.scrollCount;
// 越界
if (_this.showIndex < 0 && Math.floor(_this.animateLen) + _this.contentWidth >= 0) {
_this.animateLen -= _this.contentWidth;
_this.$animate.css("margin-" + _this.animateKey, _this.animateLen);
}
_this.showIndex = (_this.showIndex + _this.count) % _this.count;
_this.animateLen = -$temp.eq(_this.showIndex).position()[_this.animateKey];
}
}
// 向下--
else if ((type != "prev" && options.direction == "bottom") || (type == "prev" && options.direction == "top")) {
if (_this.isMarquee) {
if (_this.animateLen + _this.perAnimateTop >= 0) {
_this.animateLen -= _this.contentHeight;
}
_this.animateLen += _this.perAnimateTop;
} else {
_this.showIndex -= options.scrollCount;
// 越界
if (_this.showIndex < 0 && Math.floor(_this.animateLen) + _this.contentHeight >= 0) {
_this.animateLen -= _this.contentHeight;
_this.$animate.css("margin-" + _this.animateKey, _this.animateLen);
}
_this.showIndex = (_this.showIndex + _this.count) % _this.count;
_this.animateLen = -$temp.eq(_this.showIndex).position()[_this.animateKey];
}
}
// 向左++
else if ((type != "prev" && options.direction == "left") || (type == "prev" && options.direction == "right")) {
if (_this.isMarquee) {
if (_this.animateLen - _this.perAnimateLeft <= -_this.contentWidth) {
_this.animateLen += _this.contentWidth;
}
_this.animateLen -= _this.perAnimateLeft;
} else {
// 超过边界
if (_this.contentWidth + Math.floor(_this.animateLen) <= 0) {
_this.animateLen = _this.contentWidth + _this.animateLen;
_this.$animate.css("margin-" + _this.animateKey, _this.animateLen);
}
_this.showIndex += options.scrollCount;
if (_this.showIndex >= _this.count) {
_this.showIndex = (_this.showIndex + _this.count) % _this.count;
$temp = _this.$listClone;
}
_this.animateLen = -$temp.eq(_this.showIndex).position()[_this.animateKey];
}
}
animateProperty["margin-" + _this.animateKey] = _this.animateLen;
if (!_this.isMarquee) {
_this.isAnimating = 1;
options.onbeforechange.call($element[0]);
}
_this.isMarquee ? _this.$animate.css(animateProperty) : _this.$animate.animate(animateProperty, options.duration, function () {
if ($.isFunction(callback)) callback();
_this.isAnimating = 0;
options.onafterchange.call($element[0]);
});
},
/**
* 播放
*/
play: function () {
var _this = this,
options = _this.options;
if (_this.intervalId) return;
if (_this.isMarquee) {
if (_this.timeoutId) return;
_this.timeoutId = setTimeout(function () {
_this.intervalId = setInterval(function () {
_this._run();
}, 30);
}, options.delay);
} else {
_this.intervalId = setInterval(function () {
_this._run();
}, options.delay);
}
},
/**
* 暂停
*/
pause: function () {
var _this = this,
options = _this.options;
if (options.isHoverPause) {
if (_this.intervalId) clearInterval(_this.intervalId);
_this.intervalId = 0;
}
if (_this.isMarquee && options.isAutoPlay) {
if (_this.timeoutId) clearTimeout(_this.timeoutId);
_this.timeoutId = 0;
}
},
/**
* 上一次滚动
*/
to: function (index, duration, callback) {
var _this = this,
options = _this.options,
$element = _this.$element;
if (_this.isAnimating) return;
var toPos = _this.$list.eq(index).position()[_this.animateKey],
delta = Math.abs(Math.abs(toPos) - Math.abs(_this.animateLen)),
animateProperty = {},
time = options.duration;
if (delta <= 0) return;
if ($.isFunction(duration)) {
callback = duration;
duration = 0;
}
if (duration) time = duration;
_this.pause();
if (_this.isMarquee && !duration) time = _this.isHorizontal ? delta * 30 / _this.perAnimateLeft : delta * 30 / _this.perAnimateTop;
_this.animateLen = -toPos;
animateProperty["margin-" + _this.animateKey] = _this.animateLen;
_this.showIndex = index;
_this.isAnimating = 1;
options.onbeforechange.call($element[0]);
_this.$animate.stop(1, 1).animate(animateProperty, time, _this.isMarquee ? "linear" : "swing", function () {
if (options.isAutoPlay) _this.play();
_this.isAnimating = 0;
if ($.isFunction(callback)) callback.call($element[0]);
options.onafterchange.call($element[0]);
});
},
/**
* 上一次滚动
* 只限于非无缝滚动
*/
prev: function () {
var _this = this,
options = _this.options;
if (!_this.isMarquee) {
_this.pause();
_this._run('prev', function () {
if (options.isAutoPlay) _this.play();
});
}
},
/**
* 下一次滚动
* 只限于非无缝滚动
*/
next: function () {
var _this = this,
options = _this.options;
if (!_this.isMarquee) {
_this.pause();
_this._run('next', function () {
if (options.isAutoPlay) _this.play();
});
}
}
};
};